diff options
| author | Kenichi Handa | 1998-04-20 02:14:20 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-04-20 02:14:20 +0000 |
| commit | 7fbf766f70cf47f30a63191a63b259f0b69081e6 (patch) | |
| tree | ad8b6640119cf5e9d6fd3ec3b800bc9042bf8b89 /lisp | |
| parent | 7e1710d63b844ef78fe57643b1575759767fe688 (diff) | |
| download | emacs-7fbf766f70cf47f30a63191a63b259f0b69081e6.tar.gz emacs-7fbf766f70cf47f30a63191a63b259f0b69081e6.zip | |
FLAGS arguments for make-coding-system changed.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/language/cyrillic.el | 4 | ||||
| -rw-r--r-- | lisp/language/vietnamese.el | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/language/cyrillic.el b/lisp/language/cyrillic.el index 70ec0e4ebce..924b8aa826e 100644 --- a/lisp/language/cyrillic.el +++ b/lisp/language/cyrillic.el | |||
| @@ -104,7 +104,7 @@ | |||
| 104 | ;; So people who use koi8 for languages other than Russian | 104 | ;; So people who use koi8 for languages other than Russian |
| 105 | ;; will have to forgive us. | 105 | ;; will have to forgive us. |
| 106 | ?R "KOI8 8-bit encoding for Cyrillic (MIME: KOI8-R)" | 106 | ?R "KOI8 8-bit encoding for Cyrillic (MIME: KOI8-R)" |
| 107 | (cons ccl-decode-koi8 ccl-encode-koi8) | 107 | '(ccl-decode-koi8 . ccl-encode-koi8) |
| 108 | '((safe-charsets ascii cyrillic-iso8859-5) | 108 | '((safe-charsets ascii cyrillic-iso8859-5) |
| 109 | (mime-charset . koi8-r))) | 109 | (mime-charset . koi8-r))) |
| 110 | 110 | ||
| @@ -184,7 +184,7 @@ | |||
| 184 | (make-coding-system | 184 | (make-coding-system |
| 185 | 'cyrillic-alternativnyj 4 ?A | 185 | 'cyrillic-alternativnyj 4 ?A |
| 186 | "ALTERNATIVNYJ 8-bit encoding for Cyrillic" | 186 | "ALTERNATIVNYJ 8-bit encoding for Cyrillic" |
| 187 | (cons ccl-decode-alternativnyj ccl-encode-alternativnyj) | 187 | '(ccl-decode-alternativnyj . ccl-encode-alternativnyj) |
| 188 | '((safe-charsets ascii cyrillic-iso8859-5))) | 188 | '((safe-charsets ascii cyrillic-iso8859-5))) |
| 189 | 189 | ||
| 190 | (define-coding-system-alias 'alternativnyj 'cyrillic-alternativnyj) | 190 | (define-coding-system-alias 'alternativnyj 'cyrillic-alternativnyj) |
diff --git a/lisp/language/vietnamese.el b/lisp/language/vietnamese.el index 8b24c313fe5..bd3dfb4c0f0 100644 --- a/lisp/language/vietnamese.el +++ b/lisp/language/vietnamese.el | |||
| @@ -203,7 +203,7 @@ 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 | '(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 | 209 | ||
| @@ -212,7 +212,7 @@ Both tables are indexed by the position code of Vietnamese characters.") | |||
| 212 | (make-coding-system | 212 | (make-coding-system |
| 213 | 'vietnamese-vscii 4 ?v | 213 | 'vietnamese-vscii 4 ?v |
| 214 | "8-bit encoding for Vietnamese VSCII-1" | 214 | "8-bit encoding for Vietnamese VSCII-1" |
| 215 | (cons ccl-decode-vscii ccl-encode-vscii) | 215 | '(ccl-decode-vscii . ccl-encode-vscii) |
| 216 | '((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper))) | 216 | '((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper))) |
| 217 | 217 | ||
| 218 | (define-coding-system-alias 'vscii 'vietnamese-vscii) | 218 | (define-coding-system-alias 'vscii 'vietnamese-vscii) |