]> git.eshelyaron.com Git - emacs.git/commitdiff
Delete code for alternate-charset-table.
authorKenichi Handa <handa@m17n.org>
Mon, 12 May 1997 06:56:24 +0000 (06:56 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 12 May 1997 06:56:24 +0000 (06:56 +0000)
Initialize standard-character-unification-table-for-read and
standard-character-unification-table-for-write.
Set coding-category-iso-8-2 and coding-category-iso-else to the
coding system iso-8859-1 by default.

lisp/international/mule-conf.el

index a4726ae444412b4c02f04bb06f9a9409b5e7c450..b4f904953bd0c175e84f188dc9b96ca609e3bcc7 100644 (file)
 (define-charset nil 'tibetan-1-column
   [2 94 1 0 ?8 0 "Tibetan 1-col" "Tibetan 1 column" "Tibetan 1 column glyph"])
 
+;; Tell C code charset ID's of several charsets.
+(setup-special-charsets)
 
+\f
 ;; This is a table of alternate charsets.
-(setq alternate-charset-table
-      '((japanese-jisx0208-1978 . japanese-jisx0208)
-       (latin-jisx0201 . ascii)))
+(setq standard-character-unification-table-for-read
+      (make-unification-table
+       (list (cons (make-char 'japanese-jisx0208-1978)
+                  (make-char 'japanese-jisx0208))
+            (cons (make-char 'latin-jisx0201) (make-char 'ascii)))))
 
-;; Tell C code charset ID's of several charsets.
-(setup-special-charsets)
+(setq standard-character-unification-table-for-write nil)
 
 \f
 ;;; Make fundamental coding systems.
       coding-category-sjis     'sjis
       coding-category-iso-7    'iso-2022-7
       coding-category-iso-8-1  'iso-8859-1
-      coding-category-iso-8-2  'euc-japan
-      coding-category-iso-else 'iso-2022-cjk
+      coding-category-iso-8-2  'iso-8859-1
+      coding-category-iso-else 'iso-8859-1
       coding-category-big5     'big5
       coding-category-binary   'no-conversion)