]> code.delx.au - gnu-emacs/blobdiff - lisp/international/mule-conf.el
(locale-language-names): Use "French" for "fr".
[gnu-emacs] / lisp / international / mule-conf.el
index b091babbb184c15d5bf9e225f476177526e7582b..456f74a2089ce595bad3b5228a73c5d5937813ff 100644 (file)
 (define-charset 167 'lao
   [1 94 1 0 ?1 0 "Lao" "Lao" "Lao characters (ISO10646 0E80..0EDF)"])
 
-;; Mac Roman.  Mac Roman uses all upper 128 characters.  Emacs can
-;; handle it by using two characters sets: mac-roman-lower for code
-;; points 128 to 159 and mac-roman-upper for code points 160 to 255.
-(define-charset 168 'mac-roman-lower
-  [1 96 1 0 ?3 1 "Mac Roman lower" "Mac Roman lower" "Mac Roman lower"])
-
-(define-charset 169 'mac-roman-upper
-  [1 96 1 0 ?4 1 "Mac Roman upper" "Mac Roman upper" "Mac Roman upper"])
-
-;; CHARSET-IDs 170..223 are not used.
+;; CHARSET-IDs 168..223 are not used.
 
 ;; 1-byte 2-column charsets.  Valid range of CHARSET-ID is 224..239.
 
 ;; `make-coding-system'.
 
 (put 'no-conversion 'coding-system
-     (vector nil ?= "Do no conversion"
+     (vector nil ?= "Do no conversion.
+
+When you visit a file with this coding, the file is read into a
+unibyte buffer as is, thus each byte of a file is treated as a
+character."
             (list 'coding-category 'coding-category-binary
                   'alias-coding-systems '(no-conversion))
             nil))
 
 (make-coding-system
  'emacs-mule 0 ?=
- "Emacs internal format used in buffer and string"
+ "Emacs internal format used in buffer and string.
+
+Encoding text with this coding system produces the actual byte
+sequence of the text in buffers and strings.  An exception is made for
+eight-bit-control characters.  Each of them is encoded into a single
+byte."
  nil
  '((safe-charsets . t)))
 
 (make-coding-system
  'raw-text 5 ?t
- "Raw text, which means text contains random 8-bit codes."
+ "Raw text, which means text contains random 8-bit codes.
+Encoding text with this coding system produces the actual byte
+sequence of the text in buffers and strings.  An exception is made for
+eight-bit-control characters.  Each of them is encoded into a single
+byte.
+
+When you visit a file with this coding, the file is read into a
+unibyte buffer as is (except for EOL format), thus each byte of a file
+is treated as a character."
  nil
  '((safe-charsets . t)))