diff options
| author | Kenichi Handa | 1997-08-28 10:49:48 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-08-28 10:49:48 +0000 |
| commit | 2cb3041097e75e273542ea5be9f33ec217ec54d4 (patch) | |
| tree | b967b0908f8ccccd46434a09b02ad6e2b9e75673 | |
| parent | cd9c317785ccf2e637477ef17872772f284e1651 (diff) | |
| download | emacs-2cb3041097e75e273542ea5be9f33ec217ec54d4.tar.gz emacs-2cb3041097e75e273542ea5be9f33ec217ec54d4.zip | |
(raw-text): New coding system. Set
coding-category-raw-text to raw-text.
| -rw-r--r-- | lisp/international/mule-conf.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el index 83e67db7a64..c7833f064bd 100644 --- a/lisp/international/mule-conf.el +++ b/lisp/international/mule-conf.el | |||
| @@ -240,6 +240,10 @@ | |||
| 240 | "Emacs internal format used in buffer and string") | 240 | "Emacs internal format used in buffer and string") |
| 241 | 241 | ||
| 242 | (make-coding-system | 242 | (make-coding-system |
| 243 | 'raw-text 5 ?t | ||
| 244 | "Raw text, which means text contains random 8-bit codes.") | ||
| 245 | |||
| 246 | (make-coding-system | ||
| 243 | 'iso-2022-7bit 2 ?J | 247 | 'iso-2022-7bit 2 ?J |
| 244 | "ISO 2022 based 7-bit encoding using only G0" | 248 | "ISO 2022 based 7-bit encoding using only G0" |
| 245 | '((ascii t) nil nil nil | 249 | '((ascii t) nil nil nil |
| @@ -317,6 +321,7 @@ | |||
| 317 | coding-category-iso-7-else 'iso-2022-7bit-lock | 321 | coding-category-iso-7-else 'iso-2022-7bit-lock |
| 318 | coding-category-iso-8-else 'iso-2022-8bit-ss2 | 322 | coding-category-iso-8-else 'iso-2022-8bit-ss2 |
| 319 | coding-category-big5 'chinese-big5 | 323 | coding-category-big5 'chinese-big5 |
| 324 | coding-category-raw-text 'raw-text | ||
| 320 | coding-category-binary 'no-conversion) | 325 | coding-category-binary 'no-conversion) |
| 321 | 326 | ||
| 322 | (set-coding-priority | 327 | (set-coding-priority |
| @@ -324,10 +329,11 @@ | |||
| 324 | coding-category-iso-8-1 | 329 | coding-category-iso-8-1 |
| 325 | coding-category-iso-8-2 | 330 | coding-category-iso-8-2 |
| 326 | coding-category-iso-7-else | 331 | coding-category-iso-7-else |
| 332 | coding-category-iso-8-else | ||
| 327 | coding-category-emacs-mule | 333 | coding-category-emacs-mule |
| 334 | coding-category-raw-text | ||
| 328 | coding-category-sjis | 335 | coding-category-sjis |
| 329 | coding-category-big5 | 336 | coding-category-big5 |
| 330 | coding-category-iso-8-else | ||
| 331 | coding-category-binary)) | 337 | coding-category-binary)) |
| 332 | 338 | ||
| 333 | 339 | ||