# HG changeset patch # User Kenichi Handa # Date 1098929228 0 # Node ID 67146244da43cead34c9d9eb09ca2197ea8b92dd # Parent 3a5b83e18d41dd0306d0e126b332438139a31288 New coding system aliases unix, dos, and mac. diff -r 3a5b83e18d41 -r 67146244da43 lisp/international/mule-conf.el --- a/lisp/international/mule-conf.el Wed Oct 27 06:03:07 2004 +0000 +++ b/lisp/international/mule-conf.el Thu Oct 28 02:07:08 2004 +0000 @@ -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.