summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/international/mule-conf.el15
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 @@
;;; Make fundamental coding systems.
-;; The coding system `no-conversion' is already defined in coding.c as
-;; below:
+;; The coding system `no-conversion' and `undecided' are already
+;; defined in coding.c as below:
;;
;; (define-coding-system 'no-conversion
-;; "Do no conversion."
+;; "..."
;; :coding-type 'raw-text
-;; :mnemonic ?=)
+;; ...)
+;; (define-coding-system 'undecided
+;; "..."
+;; :coding-type 'undecided
+;; ...)
(define-coding-system-alias 'binary 'no-conversion)
+(define-coding-system-alias 'unix 'undecided-unix)
+(define-coding-system-alias 'dos 'undecided-dos)
+(define-coding-system-alias 'mac 'undecided-mac)
(define-coding-system 'raw-text
"Raw text, which means text contains random 8-bit codes.