aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/international
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2001-03-09 00:27:36 +0000
committerKenichi Handa <[email protected]>2001-03-09 00:27:36 +0000
commitbc6a09466948162ba8e820b1d57e69e7bdda5457 (patch)
tree6d08ac72ca86de97d515f597db38c45d308c0b25 /lisp/international
parent348f797a3055eda6a5257aed81d14be7bfb2b09b (diff)
(no-conversion): Fix docstring.
(raw-text): Fix docstring.
Diffstat (limited to 'lisp/international')
-rw-r--r--lisp/international/mule-conf.el13
1 files changed, 11 insertions, 2 deletions
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el
index c551763d00..456f74a208 100644
--- a/lisp/international/mule-conf.el
+++ b/lisp/international/mule-conf.el
@@ -283,7 +283,11 @@
;; `make-coding-system'.
(put 'no-conversion 'coding-system
- (vector nil ?= "Do no conversion"
+ (vector nil ?= "Do no conversion.
+
+When you visit a file with this coding, the file is read into a
+unibyte buffer as is, thus each byte of a file is treated as a
+character."
(list 'coding-category 'coding-category-binary
'alias-coding-systems '(no-conversion))
nil))
@@ -314,6 +318,7 @@
(make-coding-system
'emacs-mule 0 ?=
"Emacs internal format used in buffer and string.
+
Encoding text with this coding system produces the actual byte
sequence of the text in buffers and strings. An exception is made for
eight-bit-control characters. Each of them is encoded into a single
@@ -327,7 +332,11 @@ byte."
Encoding text with this coding system produces the actual byte
sequence of the text in buffers and strings. An exception is made for
eight-bit-control characters. Each of them is encoded into a single
-byte."
+byte.
+
+When you visit a file with this coding, the file is read into a
+unibyte buffer as is (except for EOL format), thus each byte of a file
+is treated as a character."
nil
'((safe-charsets . t)))