diff options
| author | Dave Love | 2002-05-14 15:37:13 +0000 |
|---|---|---|
| committer | Dave Love | 2002-05-14 15:37:13 +0000 |
| commit | d21363d3e451805ff1e490df04ac86e1e33e9523 (patch) | |
| tree | e25ee1a85084a2bdbdf89d091838aa74512e768c | |
| parent | 30cbd69af0bf1868fe190763d26ed5ef1c9a9a13 (diff) | |
| download | emacs-d21363d3e451805ff1e490df04ac86e1e33e9523.tar.gz emacs-d21363d3e451805ff1e490df04ac86e1e33e9523.zip | |
Fix :mime-charset properties.
| -rw-r--r-- | lisp/language/chinese.el | 12 | ||||
| -rw-r--r-- | lisp/language/greek.el | 2 | ||||
| -rw-r--r-- | lisp/language/hebrew.el | 2 | ||||
| -rw-r--r-- | lisp/language/japanese.el | 8 | ||||
| -rw-r--r-- | lisp/language/korean.el | 4 | ||||
| -rw-r--r-- | lisp/language/vietnamese.el | 2 |
6 files changed, 15 insertions, 15 deletions
diff --git a/lisp/language/chinese.el b/lisp/language/chinese.el index 1ae93a4abba..2fb99d243ef 100644 --- a/lisp/language/chinese.el +++ b/lisp/language/chinese.el | |||
| @@ -44,7 +44,7 @@ | |||
| 44 | nil] | 44 | nil] |
| 45 | :flags '(ascii-at-eol ascii-at-cntl 7-bit | 45 | :flags '(ascii-at-eol ascii-at-cntl 7-bit |
| 46 | designation locking-shift single-shift init-at-bol) | 46 | designation locking-shift single-shift init-at-bol) |
| 47 | :plist '(mime-charset . iso-2022-cn)) | 47 | :mime-charset 'iso-2022-cn) |
| 48 | 48 | ||
| 49 | (define-coding-system-alias 'chinese-iso-7bit 'iso-2022-cn) | 49 | (define-coding-system-alias 'chinese-iso-7bit 'iso-2022-cn) |
| 50 | 50 | ||
| @@ -63,7 +63,7 @@ | |||
| 63 | chinese-cns11643-6 chinese-cns11643-7)] | 63 | chinese-cns11643-6 chinese-cns11643-7)] |
| 64 | :flags '(ascii-at-eol ascii-at-cntl 7-bit | 64 | :flags '(ascii-at-eol ascii-at-cntl 7-bit |
| 65 | designation locking-shift single-shift init-at-bol) | 65 | designation locking-shift single-shift init-at-bol) |
| 66 | :plist '(mime-charset iso-2022-cn-ext)) | 66 | :mime-charset 'iso-2022-cn-ext) |
| 67 | 67 | ||
| 68 | 68 | ||
| 69 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 69 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| @@ -76,7 +76,7 @@ | |||
| 76 | :mnemonic ?c | 76 | :mnemonic ?c |
| 77 | :charset-list '(ascii chinese-gb2312) | 77 | :charset-list '(ascii chinese-gb2312) |
| 78 | :designation [ascii chinese-gb2312 nil nil] | 78 | :designation [ascii chinese-gb2312 nil nil] |
| 79 | :plist '(mime-charset cn-gb)) | 79 | :mime-charset 'cn-gb) |
| 80 | 80 | ||
| 81 | (define-coding-system-alias 'cn-gb-2312 'chinese-iso-8bit) | 81 | (define-coding-system-alias 'cn-gb-2312 'chinese-iso-8bit) |
| 82 | (define-coding-system-alias 'euc-china 'chinese-iso-8bit) | 82 | (define-coding-system-alias 'euc-china 'chinese-iso-8bit) |
| @@ -89,7 +89,7 @@ | |||
| 89 | :coding-type 'utf-8 | 89 | :coding-type 'utf-8 |
| 90 | :mnemonic ?z | 90 | :mnemonic ?z |
| 91 | :charset-list '(ascii chinese-gb2312) | 91 | :charset-list '(ascii chinese-gb2312) |
| 92 | :plist '(mime-charset hz-gb-2312) | 92 | :mime-charset 'hz-gb-2312 |
| 93 | :post-read-conversion 'post-read-decode-hz | 93 | :post-read-conversion 'post-read-decode-hz |
| 94 | :pre-write-conversion 'pre-write-encode-hz) | 94 | :pre-write-conversion 'pre-write-encode-hz) |
| 95 | 95 | ||
| @@ -133,7 +133,7 @@ | |||
| 133 | :coding-type 'charset | 133 | :coding-type 'charset |
| 134 | :mnemonic ?B | 134 | :mnemonic ?B |
| 135 | :charset-list '(ascii big5) | 135 | :charset-list '(ascii big5) |
| 136 | :plist '(mime-charset big5)) | 136 | :mime-charset 'big5) |
| 137 | 137 | ||
| 138 | (define-coding-system-alias 'big5 'chinese-big5) | 138 | (define-coding-system-alias 'big5 'chinese-big5) |
| 139 | (define-coding-system-alias 'cn-big5 'chinese-big5) | 139 | (define-coding-system-alias 'cn-big5 'chinese-big5) |
| @@ -171,7 +171,7 @@ | |||
| 171 | chinese-cns11643-5 | 171 | chinese-cns11643-5 |
| 172 | chinese-cns11643-6 | 172 | chinese-cns11643-6 |
| 173 | chinese-cns11643-7) nil] | 173 | chinese-cns11643-7) nil] |
| 174 | :plist '(mime-charset euc-tw)) | 174 | :mime-charset 'euc-tw) |
| 175 | 175 | ||
| 176 | (define-coding-system-alias 'euc-taiwan 'euc-tw) | 176 | (define-coding-system-alias 'euc-taiwan 'euc-tw) |
| 177 | 177 | ||
diff --git a/lisp/language/greek.el b/lisp/language/greek.el index 5dfe2f186fa..469194893df 100644 --- a/lisp/language/greek.el +++ b/lisp/language/greek.el | |||
| @@ -33,7 +33,7 @@ | |||
| 33 | :coding-type 'charset | 33 | :coding-type 'charset |
| 34 | :mnemonic ?7 | 34 | :mnemonic ?7 |
| 35 | :charset-list '(iso-8859-7) | 35 | :charset-list '(iso-8859-7) |
| 36 | :plist '(mime-charset iso-8859-7)) | 36 | :mime-charset 'iso-8859-7) |
| 37 | 37 | ||
| 38 | (define-coding-system-alias 'iso-8859-7 'greek-iso-8bit) | 38 | (define-coding-system-alias 'iso-8859-7 'greek-iso-8bit) |
| 39 | 39 | ||
diff --git a/lisp/language/hebrew.el b/lisp/language/hebrew.el index a56084686d4..1642ac259db 100644 --- a/lisp/language/hebrew.el +++ b/lisp/language/hebrew.el | |||
| @@ -36,7 +36,7 @@ | |||
| 36 | :coding-type 'charset | 36 | :coding-type 'charset |
| 37 | :mnemonic ?8 | 37 | :mnemonic ?8 |
| 38 | :charset-list '(iso-8859-8) | 38 | :charset-list '(iso-8859-8) |
| 39 | :plist '(mime-charset iso-8859-8)) | 39 | :mime-charset 'iso-8859-8) |
| 40 | 40 | ||
| 41 | (define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit) | 41 | (define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit) |
| 42 | 42 | ||
diff --git a/lisp/language/japanese.el b/lisp/language/japanese.el index fa55cc2a47e..0da43a8bb8e 100644 --- a/lisp/language/japanese.el +++ b/lisp/language/japanese.el | |||
| @@ -39,7 +39,7 @@ | |||
| 39 | :flags '(short ascii-at-eol ascii-at-cntl 7-bit designation) | 39 | :flags '(short ascii-at-eol ascii-at-cntl 7-bit designation) |
| 40 | :charset-list '(ascii japanese-jisx0208-1978 japanese-jisx0208 | 40 | :charset-list '(ascii japanese-jisx0208-1978 japanese-jisx0208 |
| 41 | latin-jisx0201 japanese-jisx0212) | 41 | latin-jisx0201 japanese-jisx0212) |
| 42 | :plist '(mime-charset iso-2022-jp)) | 42 | :mime-charset 'iso-2022-jp) |
| 43 | 43 | ||
| 44 | (define-coding-system-alias 'junet 'iso-2022-jp) | 44 | (define-coding-system-alias 'junet 'iso-2022-jp) |
| 45 | 45 | ||
| @@ -59,14 +59,14 @@ | |||
| 59 | latin-jisx0201 japanese-jisx0212 | 59 | latin-jisx0201 japanese-jisx0212 |
| 60 | chinese-gb2312 korean-ksc5601 | 60 | chinese-gb2312 korean-ksc5601 |
| 61 | latin-iso8859-1 greek-iso8859-7) | 61 | latin-iso8859-1 greek-iso8859-7) |
| 62 | :plist '(mime-charset iso-2022-jp-2)) | 62 | :mime-charset 'iso-2022-jp-2) |
| 63 | 63 | ||
| 64 | (define-coding-system 'japanese-shift-jis | 64 | (define-coding-system 'japanese-shift-jis |
| 65 | "Shift-JIS 8-bit encoding for Japanese (MIME:SHIFT_JIS)" | 65 | "Shift-JIS 8-bit encoding for Japanese (MIME:SHIFT_JIS)" |
| 66 | :coding-type 'shift-jis | 66 | :coding-type 'shift-jis |
| 67 | :mnemonic ?S | 67 | :mnemonic ?S |
| 68 | :charset-list '(ascii katakana-jisx0201 japanese-jisx0208) | 68 | :charset-list '(ascii katakana-jisx0201 japanese-jisx0208) |
| 69 | :plist '(mime-charset shift_jis)) | 69 | :mime-charset 'shift_jis) |
| 70 | 70 | ||
| 71 | (define-coding-system-alias 'shift_jis 'japanese-shift-jis) | 71 | (define-coding-system-alias 'shift_jis 'japanese-shift-jis) |
| 72 | (define-coding-system-alias 'sjis 'japanese-shift-jis) | 72 | (define-coding-system-alias 'sjis 'japanese-shift-jis) |
| @@ -94,7 +94,7 @@ | |||
| 94 | :charset-list '(ascii latin-jisx0201 japanese-jisx0208 | 94 | :charset-list '(ascii latin-jisx0201 japanese-jisx0208 |
| 95 | japanese-jisx0208-1978 | 95 | japanese-jisx0208-1978 |
| 96 | katakana-jisx0201 japanese-jisx0212) | 96 | katakana-jisx0201 japanese-jisx0212) |
| 97 | :plist '(mime-charset euc-jp)) | 97 | :mime-charset 'euc-jp) |
| 98 | 98 | ||
| 99 | (define-coding-system-alias 'euc-japan-1990 'japanese-iso-8bit) | 99 | (define-coding-system-alias 'euc-japan-1990 'japanese-iso-8bit) |
| 100 | (define-coding-system-alias 'euc-japan 'japanese-iso-8bit) | 100 | (define-coding-system-alias 'euc-japan 'japanese-iso-8bit) |
diff --git a/lisp/language/korean.el b/lisp/language/korean.el index bd267437a17..b1f658efe80 100644 --- a/lisp/language/korean.el +++ b/lisp/language/korean.el | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | :mnemonic ?K | 34 | :mnemonic ?K |
| 35 | :designation [ascii korean-ksc5601 nil nil] | 35 | :designation [ascii korean-ksc5601 nil nil] |
| 36 | :charset-list '(ascii korean-ksc5601) | 36 | :charset-list '(ascii korean-ksc5601) |
| 37 | :plist '(mime-charset euc-kr)) | 37 | :mime-charset 'euc-kr) |
| 38 | 38 | ||
| 39 | (define-coding-system-alias 'euc-kr 'korean-iso-8bit) | 39 | (define-coding-system-alias 'euc-kr 'korean-iso-8bit) |
| 40 | (define-coding-system-alias 'euc-korea 'korean-iso-8bit) | 40 | (define-coding-system-alias 'euc-korea 'korean-iso-8bit) |
| @@ -47,7 +47,7 @@ | |||
| 47 | :flags '(ascii-at-eol ascii-at-cntl 7-bit designation locking-shift | 47 | :flags '(ascii-at-eol ascii-at-cntl 7-bit designation locking-shift |
| 48 | designation-bol) | 48 | designation-bol) |
| 49 | :charset-list '(ascii korean-ksc5601) | 49 | :charset-list '(ascii korean-ksc5601) |
| 50 | :plist '(mime-charset iso-2022-kr)) | 50 | :mime-charset 'iso-2022-kr) |
| 51 | 51 | ||
| 52 | (define-coding-system-alias 'korean-iso-7bit-lock 'iso-2022-kr) | 52 | (define-coding-system-alias 'korean-iso-7bit-lock 'iso-2022-kr) |
| 53 | 53 | ||
diff --git a/lisp/language/vietnamese.el b/lisp/language/vietnamese.el index aa523279b25..808596c34cb 100644 --- a/lisp/language/vietnamese.el +++ b/lisp/language/vietnamese.el | |||
| @@ -33,7 +33,7 @@ | |||
| 33 | :coding-type 'charset | 33 | :coding-type 'charset |
| 34 | :mnemonic ?V | 34 | :mnemonic ?V |
| 35 | :charset-list '(viscii) | 35 | :charset-list '(viscii) |
| 36 | :plist '(mime-charset viscii)) | 36 | :mime-charset 'viscii) |
| 37 | 37 | ||
| 38 | (define-coding-system-alias 'viscii 'vietnamese-viscii) | 38 | (define-coding-system-alias 'viscii 'vietnamese-viscii) |
| 39 | 39 | ||