aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/language
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-01 23:29:26 +0000
committerRichard M. Stallman1997-07-01 23:29:26 +0000
commit2e21aa274a39252eccb385423de16bd6dc02b5e1 (patch)
tree1922aedf85696c4208f953e0448209101e5935c7 /lisp/language
parenta42763dc47474af05b566ebb37404da66befa4c7 (diff)
downloademacs-2e21aa274a39252eccb385423de16bd6dc02b5e1.tar.gz
emacs-2e21aa274a39252eccb385423de16bd6dc02b5e1.zip
Fix calls to define-coding-system-alias.
Diffstat (limited to 'lisp/language')
-rw-r--r--lisp/language/thai.el4
-rw-r--r--lisp/language/vietnamese.el6
2 files changed, 5 insertions, 5 deletions
diff --git a/lisp/language/thai.el b/lisp/language/thai.el
index c64c4bd21a0..c57ab6c90b4 100644
--- a/lisp/language/thai.el
+++ b/lisp/language/thai.el
@@ -36,8 +36,8 @@
36(put 'thai-tis620 'post-read-conversion 'thai-post-read-conversion) 36(put 'thai-tis620 'post-read-conversion 'thai-post-read-conversion)
37(put 'thai-tis620 'pre-write-conversion 'thai-pre-write-conversion) 37(put 'thai-tis620 'pre-write-conversion 'thai-pre-write-conversion)
38 38
39(define-coding-system-alias 'thai-tis620 'th-tis620) 39(define-coding-system-alias 'th-tis620 'thai-tis620)
40(define-coding-system-alias 'thai-tis620 'tis620) 40(define-coding-system-alias 'tis620 'thai-tis620)
41 41
42(set-language-info-alist 42(set-language-info-alist
43 "Thai" '((tutorial . "TUTORIAL.th") 43 "Thai" '((tutorial . "TUTORIAL.th")
diff --git a/lisp/language/vietnamese.el b/lisp/language/vietnamese.el
index 9363d08249d..51f9bd43134 100644
--- a/lisp/language/vietnamese.el
+++ b/lisp/language/vietnamese.el
@@ -205,14 +205,14 @@ Both tables are indexed by the position code of Vietnamese characters.")
205 "8-bit encoding for Vietnamese VISCII 1.1 (MIME:VISCII)" 205 "8-bit encoding for Vietnamese VISCII 1.1 (MIME:VISCII)"
206 (cons ccl-decode-viscii ccl-encode-viscii)) 206 (cons ccl-decode-viscii ccl-encode-viscii))
207 207
208(define-coding-system-alias 'vietnamese-viscii 'viscii) 208(define-coding-system-alias 'viscii 'vietnamese-viscii)
209 209
210(make-coding-system 210(make-coding-system
211 'vietnamese-vscii 4 ?v 211 'vietnamese-vscii 4 ?v
212 "8-bit encoding for Vietnamese VSCII-1" 212 "8-bit encoding for Vietnamese VSCII-1"
213 (cons ccl-decode-vscii ccl-encode-vscii)) 213 (cons ccl-decode-vscii ccl-encode-vscii))
214 214
215(define-coding-system-alias 'vietnamese-vscii 'vscii) 215(define-coding-system-alias 'vscii 'vietnamese-vscii)
216 216
217(make-coding-system 217(make-coding-system
218 'vietnamese-viqr 0 ?q 218 'vietnamese-viqr 0 ?q
@@ -221,7 +221,7 @@ Both tables are indexed by the position code of Vietnamese characters.")
221(put 'vietnamese-viqr 'post-read-conversion 'viqr-post-read-conversion) 221(put 'vietnamese-viqr 'post-read-conversion 'viqr-post-read-conversion)
222(put 'vietnamese-viqr 'pre-write-conversion 'viqr-pre-write-conversion) 222(put 'vietnamese-viqr 'pre-write-conversion 'viqr-pre-write-conversion)
223 223
224(define-coding-system-alias 'vietnamese-viqr 'viqr) 224(define-coding-system-alias 'viqr 'vietnamese-viqr)
225 225
226(setq font-ccl-encoder-alist 226(setq font-ccl-encoder-alist
227 (cons (cons "viscii" ccl-encode-viscii-font) font-ccl-encoder-alist)) 227 (cons (cons "viscii" ccl-encode-viscii-font) font-ccl-encoder-alist))