diff options
| author | Kenichi Handa | 2004-10-28 02:07:08 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2004-10-28 02:07:08 +0000 |
| commit | 2feefd8cf4abcf578f5f28a43a7573bc8c1bf427 (patch) | |
| tree | e3de82034b37fc6be95754b79593661b3878adef | |
| parent | 68c015f511f43f6d24ac79ac78cd4a7b3cd5a89e (diff) | |
| download | emacs-2feefd8cf4abcf578f5f28a43a7573bc8c1bf427.tar.gz emacs-2feefd8cf4abcf578f5f28a43a7573bc8c1bf427.zip | |
New coding system aliases unix, dos, and mac.
| -rw-r--r-- | lisp/international/mule-conf.el | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el index f9d70bdbb5e..9c206c9ec3e 100644 --- a/lisp/international/mule-conf.el +++ b/lisp/international/mule-conf.el | |||
| @@ -1167,15 +1167,22 @@ | |||
| 1167 | 1167 | ||
| 1168 | ;;; Make fundamental coding systems. | 1168 | ;;; Make fundamental coding systems. |
| 1169 | 1169 | ||
| 1170 | ;; The coding system `no-conversion' is already defined in coding.c as | 1170 | ;; The coding system `no-conversion' and `undecided' are already |
| 1171 | ;; below: | 1171 | ;; defined in coding.c as below: |
| 1172 | ;; | 1172 | ;; |
| 1173 | ;; (define-coding-system 'no-conversion | 1173 | ;; (define-coding-system 'no-conversion |
| 1174 | ;; "Do no conversion." | 1174 | ;; "..." |
| 1175 | ;; :coding-type 'raw-text | 1175 | ;; :coding-type 'raw-text |
| 1176 | ;; :mnemonic ?=) | 1176 | ;; ...) |
| 1177 | ;; (define-coding-system 'undecided | ||
| 1178 | ;; "..." | ||
| 1179 | ;; :coding-type 'undecided | ||
| 1180 | ;; ...) | ||
| 1177 | 1181 | ||
| 1178 | (define-coding-system-alias 'binary 'no-conversion) | 1182 | (define-coding-system-alias 'binary 'no-conversion) |
| 1183 | (define-coding-system-alias 'unix 'undecided-unix) | ||
| 1184 | (define-coding-system-alias 'dos 'undecided-dos) | ||
| 1185 | (define-coding-system-alias 'mac 'undecided-mac) | ||
| 1179 | 1186 | ||
| 1180 | (define-coding-system 'raw-text | 1187 | (define-coding-system 'raw-text |
| 1181 | "Raw text, which means text contains random 8-bit codes. | 1188 | "Raw text, which means text contains random 8-bit codes. |