aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2001-03-09 00:27:36 +0000
committerKenichi Handa2001-03-09 00:27:36 +0000
commitbc6a09466948162ba8e820b1d57e69e7bdda5457 (patch)
tree6d08ac72ca86de97d515f597db38c45d308c0b25
parent348f797a3055eda6a5257aed81d14be7bfb2b09b (diff)
downloademacs-bc6a09466948162ba8e820b1d57e69e7bdda5457.tar.gz
emacs-bc6a09466948162ba8e820b1d57e69e7bdda5457.zip
(no-conversion): Fix docstring.
(raw-text): Fix docstring.
-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 c551763d00c..456f74a2089 100644
--- a/lisp/international/mule-conf.el
+++ b/lisp/international/mule-conf.el
@@ -283,7 +283,11 @@
283;; `make-coding-system'. 283;; `make-coding-system'.
284 284
285(put 'no-conversion 'coding-system 285(put 'no-conversion 'coding-system
286 (vector nil ?= "Do no conversion" 286 (vector nil ?= "Do no conversion.
287
288When you visit a file with this coding, the file is read into a
289unibyte buffer as is, thus each byte of a file is treated as a
290character."
287 (list 'coding-category 'coding-category-binary 291 (list 'coding-category 'coding-category-binary
288 'alias-coding-systems '(no-conversion)) 292 'alias-coding-systems '(no-conversion))
289 nil)) 293 nil))
@@ -314,6 +318,7 @@
314(make-coding-system 318(make-coding-system
315 'emacs-mule 0 ?= 319 'emacs-mule 0 ?=
316 "Emacs internal format used in buffer and string. 320 "Emacs internal format used in buffer and string.
321
317Encoding text with this coding system produces the actual byte 322Encoding text with this coding system produces the actual byte
318sequence of the text in buffers and strings. An exception is made for 323sequence of the text in buffers and strings. An exception is made for
319eight-bit-control characters. Each of them is encoded into a single 324eight-bit-control characters. Each of them is encoded into a single
@@ -327,7 +332,11 @@ byte."
327Encoding text with this coding system produces the actual byte 332Encoding text with this coding system produces the actual byte
328sequence of the text in buffers and strings. An exception is made for 333sequence of the text in buffers and strings. An exception is made for
329eight-bit-control characters. Each of them is encoded into a single 334eight-bit-control characters. Each of them is encoded into a single
330byte." 335byte.
336
337When you visit a file with this coding, the file is read into a
338unibyte buffer as is (except for EOL format), thus each byte of a file
339is treated as a character."
331 nil 340 nil
332 '((safe-charsets . t))) 341 '((safe-charsets . t)))
333 342