# HG changeset patch # User Kenichi Handa # Date 984097656 0 # Node ID 9688519d51d6f551e482e6f5bc0b767500e205d8 # Parent ce27cce29f9101082dfb7a0524f4369512719b06 (no-conversion): Fix docstring. (raw-text): Fix docstring. diff -r ce27cce29f91 -r 9688519d51d6 lisp/international/mule-conf.el --- a/lisp/international/mule-conf.el Fri Mar 09 00:27:17 2001 +0000 +++ b/lisp/international/mule-conf.el Fri Mar 09 00:27:36 2001 +0000 @@ -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 @@ 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)))