diff options
author | Kenichi Handa <handa@m17n.org> | 1997-10-23 12:03:41 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-10-23 12:03:41 +0000 |
commit | c8f0d090d075bbaf3553a7addcbfaad18e7fcb6d (patch) | |
tree | d238b5fe60e3f71ce1fa419e96b940507f1d52f2 /lisp/language/vietnamese.el | |
parent | 6cb92c3a637747ae7e5ee18c656be158fafd84a2 (diff) | |
download | emacs-c8f0d090d075bbaf3553a7addcbfaad18e7fcb6d.tar.gz |
Give proper SAFE-CHARSET argument in
each call of make-coding-system.
Diffstat (limited to 'lisp/language/vietnamese.el')
-rw-r--r-- | lisp/language/vietnamese.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/language/vietnamese.el b/lisp/language/vietnamese.el index 5207b514c63..5181155e52f 100644 --- a/lisp/language/vietnamese.el +++ b/lisp/language/vietnamese.el @@ -203,21 +203,24 @@ Both tables are indexed by the position code of Vietnamese characters.") (make-coding-system 'vietnamese-viscii 4 ?V "8-bit encoding for Vietnamese VISCII 1.1 (MIME:VISCII)" - (cons ccl-decode-viscii ccl-encode-viscii)) + (cons ccl-decode-viscii ccl-encode-viscii) + '(ascii vietnamese-viscii-lower vietnamese-viscii-upper)) (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)) + (cons ccl-decode-vscii ccl-encode-vscii) + '(ascii vietnamese-viscii-lower vietnamese-viscii-upper)) (define-coding-system-alias 'vscii 'vietnamese-vscii) (make-coding-system 'vietnamese-viqr 0 ?q "Vietnamese latin transcription (VIQR)" - nil) + nil + '(ascii vietnamese-viscii-lower vietnamese-viscii-upper)) (coding-system-put 'vietnamese-viqr 'post-read-conversion 'viqr-post-read-conversion) (coding-system-put 'vietnamese-viqr 'pre-write-conversion |