diff options
| author | Kenichi Handa | 1998-08-18 13:15:18 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-08-18 13:15:18 +0000 |
| commit | c11b3a3f65c66040b39cb22f7985f062e3b94069 (patch) | |
| tree | 58da19d8498ae826bc20794a441d066bb4ec63d2 | |
| parent | 4ccd0d4a7eaf395d0cc3da7199f062be4fb482f4 (diff) | |
| download | emacs-c11b3a3f65c66040b39cb22f7985f062e3b94069.tar.gz emacs-c11b3a3f65c66040b39cb22f7985f062e3b94069.zip | |
(vietnamese-viscii): Fix the value of
`valid-code' property.
(vietnamese-vscii): Likewise.
| -rw-r--r-- | lisp/language/vietnamese.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/language/vietnamese.el b/lisp/language/vietnamese.el index 9714a1523bf..adcf2675db0 100644 --- a/lisp/language/vietnamese.el +++ b/lisp/language/vietnamese.el | |||
| @@ -206,7 +206,7 @@ Both tables are indexed by the position code of Vietnamese characters.") | |||
| 206 | '(ccl-decode-viscii . ccl-encode-viscii) | 206 | '(ccl-decode-viscii . ccl-encode-viscii) |
| 207 | '((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper) | 207 | '((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper) |
| 208 | (mime-charset . viscii) | 208 | (mime-charset . viscii) |
| 209 | (valid-codes (0 255)))) | 209 | (valid-codes (0 . 255)))) |
| 210 | 210 | ||
| 211 | (define-coding-system-alias 'viscii 'vietnamese-viscii) | 211 | (define-coding-system-alias 'viscii 'vietnamese-viscii) |
| 212 | 212 | ||
| @@ -215,7 +215,7 @@ Both tables are indexed by the position code of Vietnamese characters.") | |||
| 215 | "8-bit encoding for Vietnamese VSCII-1" | 215 | "8-bit encoding for Vietnamese VSCII-1" |
| 216 | '(ccl-decode-vscii . ccl-encode-vscii) | 216 | '(ccl-decode-vscii . ccl-encode-vscii) |
| 217 | '((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper) | 217 | '((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper) |
| 218 | (valid-codes (0 255)))) | 218 | (valid-codes (0 . 255)))) |
| 219 | 219 | ||
| 220 | (define-coding-system-alias 'vscii 'vietnamese-vscii) | 220 | (define-coding-system-alias 'vscii 'vietnamese-vscii) |
| 221 | 221 | ||