diff options
| author | Kenichi Handa | 1997-10-23 12:03:41 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-10-23 12:03:41 +0000 |
| commit | c8f0d090d075bbaf3553a7addcbfaad18e7fcb6d (patch) | |
| tree | d238b5fe60e3f71ce1fa419e96b940507f1d52f2 /lisp/language | |
| parent | 6cb92c3a637747ae7e5ee18c656be158fafd84a2 (diff) | |
| download | emacs-c8f0d090d075bbaf3553a7addcbfaad18e7fcb6d.tar.gz emacs-c8f0d090d075bbaf3553a7addcbfaad18e7fcb6d.zip | |
Give proper SAFE-CHARSET argument in
each call of make-coding-system.
Diffstat (limited to 'lisp/language')
| -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.") | |||
| 203 | (make-coding-system | 203 | (make-coding-system |
| 204 | 'vietnamese-viscii 4 ?V | 204 | 'vietnamese-viscii 4 ?V |
| 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 | '(ascii vietnamese-viscii-lower vietnamese-viscii-upper)) | ||
| 207 | 208 | ||
| 208 | (define-coding-system-alias 'viscii 'vietnamese-viscii) | 209 | (define-coding-system-alias 'viscii 'vietnamese-viscii) |
| 209 | 210 | ||
| 210 | (make-coding-system | 211 | (make-coding-system |
| 211 | 'vietnamese-vscii 4 ?v | 212 | 'vietnamese-vscii 4 ?v |
| 212 | "8-bit encoding for Vietnamese VSCII-1" | 213 | "8-bit encoding for Vietnamese VSCII-1" |
| 213 | (cons ccl-decode-vscii ccl-encode-vscii)) | 214 | (cons ccl-decode-vscii ccl-encode-vscii) |
| 215 | '(ascii vietnamese-viscii-lower vietnamese-viscii-upper)) | ||
| 214 | 216 | ||
| 215 | (define-coding-system-alias 'vscii 'vietnamese-vscii) | 217 | (define-coding-system-alias 'vscii 'vietnamese-vscii) |
| 216 | 218 | ||
| 217 | (make-coding-system | 219 | (make-coding-system |
| 218 | 'vietnamese-viqr 0 ?q | 220 | 'vietnamese-viqr 0 ?q |
| 219 | "Vietnamese latin transcription (VIQR)" | 221 | "Vietnamese latin transcription (VIQR)" |
| 220 | nil) | 222 | nil |
| 223 | '(ascii vietnamese-viscii-lower vietnamese-viscii-upper)) | ||
| 221 | (coding-system-put 'vietnamese-viqr 'post-read-conversion | 224 | (coding-system-put 'vietnamese-viqr 'post-read-conversion |
| 222 | 'viqr-post-read-conversion) | 225 | 'viqr-post-read-conversion) |
| 223 | (coding-system-put 'vietnamese-viqr 'pre-write-conversion | 226 | (coding-system-put 'vietnamese-viqr 'pre-write-conversion |