diff options
| author | Kenichi Handa | 2001-03-09 00:27:36 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2001-03-09 00:27:36 +0000 |
| commit | bc6a09466948162ba8e820b1d57e69e7bdda5457 (patch) | |
| tree | 6d08ac72ca86de97d515f597db38c45d308c0b25 | |
| parent | 348f797a3055eda6a5257aed81d14be7bfb2b09b (diff) | |
| download | emacs-bc6a09466948162ba8e820b1d57e69e7bdda5457.tar.gz emacs-bc6a09466948162ba8e820b1d57e69e7bdda5457.zip | |
(no-conversion): Fix docstring.
(raw-text): Fix docstring.
| -rw-r--r-- | lisp/international/mule-conf.el | 13 |
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 | |||
| 288 | When you visit a file with this coding, the file is read into a | ||
| 289 | unibyte buffer as is, thus each byte of a file is treated as a | ||
| 290 | character." | ||
| 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 | |||
| 317 | Encoding text with this coding system produces the actual byte | 322 | Encoding text with this coding system produces the actual byte |
| 318 | sequence of the text in buffers and strings. An exception is made for | 323 | sequence of the text in buffers and strings. An exception is made for |
| 319 | eight-bit-control characters. Each of them is encoded into a single | 324 | eight-bit-control characters. Each of them is encoded into a single |
| @@ -327,7 +332,11 @@ byte." | |||
| 327 | Encoding text with this coding system produces the actual byte | 332 | Encoding text with this coding system produces the actual byte |
| 328 | sequence of the text in buffers and strings. An exception is made for | 333 | sequence of the text in buffers and strings. An exception is made for |
| 329 | eight-bit-control characters. Each of them is encoded into a single | 334 | eight-bit-control characters. Each of them is encoded into a single |
| 330 | byte." | 335 | byte. |
| 336 | |||
| 337 | When you visit a file with this coding, the file is read into a | ||
| 338 | unibyte buffer as is (except for EOL format), thus each byte of a file | ||
| 339 | is treated as a character." | ||
| 331 | nil | 340 | nil |
| 332 | '((safe-charsets . t))) | 341 | '((safe-charsets . t))) |
| 333 | 342 | ||