]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix calls to define-coding-system-alias.
authorRichard M. Stallman <rms@gnu.org>
Tue, 1 Jul 1997 23:29:26 +0000 (23:29 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 1 Jul 1997 23:29:26 +0000 (23:29 +0000)
lisp/international/mule-conf.el
lisp/language/thai.el
lisp/language/vietnamese.el

index 3d4544e1b961b0e7bb57464919ce1281e0d4ddf3..728d98f19fabd7ee631ac14bb02c5b2880b0b878 100644 (file)
  '((ascii t) t nil nil
    nil ascii-eol ascii-cntl seven locking-shift))
 
-(define-coding-system-alias 'iso-2022-7bit-lock 'iso-2022-int-1)
+(define-coding-system-alias 'iso-2022-int-1 'iso-2022-7bit-lock)
 
 (make-coding-system
  'iso-2022-7bit-lock-ss2 2 ?i
    short ascii-eol ascii-cntl seven locking-shift single-shift nil nil nil
    init-bol))
 
-(define-coding-system-alias 'iso-2022-7bit-lock-ss2 'iso-2022-cjk)
+(define-coding-system-alias 'iso-2022-cjk 'iso-2022-7bit-lock-ss2)
 
 (make-coding-system
  'iso-2022-8bit-ss2 2 ?@
index c64c4bd21a0dd8b3e1590c37629fd0671c014608..c57ab6c90b4716bfb0e6eb18e15ce65a7e2105b1 100644 (file)
@@ -36,8 +36,8 @@
 (put 'thai-tis620 'post-read-conversion 'thai-post-read-conversion)
 (put 'thai-tis620 'pre-write-conversion 'thai-pre-write-conversion)
 
-(define-coding-system-alias 'thai-tis620 'th-tis620)
-(define-coding-system-alias 'thai-tis620 'tis620)
+(define-coding-system-alias 'th-tis620 'thai-tis620)
+(define-coding-system-alias 'tis620 'thai-tis620)
 
 (set-language-info-alist
  "Thai" '((tutorial . "TUTORIAL.th")
index 9363d08249d6b2c77c8d4ac908799efacd6e4184..51f9bd4313490ea5753c68d713fd9507b447fcc5 100644 (file)
@@ -205,14 +205,14 @@ Both tables are indexed by the position code of Vietnamese characters.")
  "8-bit encoding for Vietnamese VISCII 1.1 (MIME:VISCII)"
  (cons ccl-decode-viscii ccl-encode-viscii))
 
-(define-coding-system-alias 'vietnamese-viscii 'viscii)
+(define-coding-system-alias 'viscii 'vietnamese-viscii)
 
 (make-coding-system
  'vietnamese-vscii 4 ?v
  "8-bit encoding for Vietnamese VSCII-1"
  (cons ccl-decode-vscii ccl-encode-vscii))
 
-(define-coding-system-alias 'vietnamese-vscii 'vscii)
+(define-coding-system-alias 'vscii 'vietnamese-vscii)
 
 (make-coding-system
  'vietnamese-viqr 0 ?q
@@ -221,7 +221,7 @@ Both tables are indexed by the position code of Vietnamese characters.")
 (put 'vietnamese-viqr 'post-read-conversion 'viqr-post-read-conversion)
 (put 'vietnamese-viqr 'pre-write-conversion 'viqr-pre-write-conversion)
 
-(define-coding-system-alias 'vietnamese-viqr 'viqr)
+(define-coding-system-alias 'viqr 'vietnamese-viqr)
 
 (setq font-ccl-encoder-alist
       (cons (cons "viscii" ccl-encode-viscii-font) font-ccl-encoder-alist))