diff options
| author | Kenichi Handa | 2012-09-14 00:21:58 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2012-09-14 00:21:58 +0900 |
| commit | d607d303028dca3d7d6ba21b4013f08dd2b0a1d6 (patch) | |
| tree | bf92bfe27b8fda827fa9191f98813f8c81077295 | |
| parent | 4d0b77fc572d0b8e834f5241f39f1b4ce2e6bd63 (diff) | |
| download | emacs-d607d303028dca3d7d6ba21b4013f08dd2b0a1d6.tar.gz emacs-d607d303028dca3d7d6ba21b4013f08dd2b0a1d6.zip | |
language/chinese.el ("Chinese-GB", "Chinese-BIG5", "Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to coding-priority property of these language environment.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/language/chinese.el | 10 |
2 files changed, 12 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index af91cfffba4..6b132bb9134 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-09-13 Kenichi Handa <handa@gnu.org> | ||
| 2 | |||
| 3 | * language/chinese.el ("Chinese-GB", "Chinese-BIG5") | ||
| 4 | ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to | ||
| 5 | `coding-priority' property of these language environment. | ||
| 6 | |||
| 1 | 2012-09-13 Paul Eggert <eggert@cs.ucla.edu> | 7 | 2012-09-13 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 8 | ||
| 3 | Fix glitches caused by addition of psec to timers (Bug#12430). | 9 | Fix glitches caused by addition of psec to timers (Bug#12430). |
diff --git a/lisp/language/chinese.el b/lisp/language/chinese.el index ac2afa373c4..782b5a363ad 100644 --- a/lisp/language/chinese.el +++ b/lisp/language/chinese.el | |||
| @@ -110,7 +110,8 @@ | |||
| 110 | (use-cjk-char-width-table 'zh_CN))) | 110 | (use-cjk-char-width-table 'zh_CN))) |
| 111 | (exit-function . use-default-char-width-table) | 111 | (exit-function . use-default-char-width-table) |
| 112 | (coding-system chinese-iso-8bit iso-2022-cn chinese-hz) | 112 | (coding-system chinese-iso-8bit iso-2022-cn chinese-hz) |
| 113 | (coding-priority chinese-iso-8bit chinese-big5 iso-2022-cn) | 113 | (coding-priority chinese-iso-8bit chinese-gbk chinese-big5 |
| 114 | iso-2022-cn) | ||
| 114 | (input-method . "chinese-py-punct") | 115 | (input-method . "chinese-py-punct") |
| 115 | (features china-util) | 116 | (features china-util) |
| 116 | (sample-text . "Chinese ($AVPND(B,$AFUM(;0(B,$A::So(B) $ADc:C(B") | 117 | (sample-text . "Chinese ($AVPND(B,$AFUM(;0(B,$A::So(B) $ADc:C(B") |
| @@ -140,7 +141,8 @@ | |||
| 140 | (use-cjk-char-width-table 'zh_HK))) | 141 | (use-cjk-char-width-table 'zh_HK))) |
| 141 | (exit-function . use-default-char-width-table) | 142 | (exit-function . use-default-char-width-table) |
| 142 | (coding-system chinese-big5 chinese-iso-7bit) | 143 | (coding-system chinese-big5 chinese-iso-7bit) |
| 143 | (coding-priority chinese-big5 iso-2022-cn chinese-iso-8bit) | 144 | (coding-priority chinese-big5 iso-2022-cn chinese-iso-8bit |
| 145 | chinese-gbk) | ||
| 144 | (input-method . "chinese-py-punct-b5") | 146 | (input-method . "chinese-py-punct-b5") |
| 145 | (ctext-non-standard-encodings "big5-0") | 147 | (ctext-non-standard-encodings "big5-0") |
| 146 | (features china-util) | 148 | (features china-util) |
| @@ -196,7 +198,7 @@ | |||
| 196 | (exit-function . use-default-char-width-table) | 198 | (exit-function . use-default-char-width-table) |
| 197 | (coding-system iso-2022-cn euc-tw) | 199 | (coding-system iso-2022-cn euc-tw) |
| 198 | (coding-priority iso-2022-cn euc-tw chinese-big5 | 200 | (coding-priority iso-2022-cn euc-tw chinese-big5 |
| 199 | chinese-iso-8bit) | 201 | chinese-iso-8bit chinese-gbk) |
| 200 | (features china-util) | 202 | (features china-util) |
| 201 | (input-method . "chinese-cns-quick") | 203 | (input-method . "chinese-cns-quick") |
| 202 | ;; Fixme: presumably it won't accept big5 now. | 204 | ;; Fixme: presumably it won't accept big5 now. |
| @@ -216,7 +218,7 @@ accepts Big5 for input also (which is then converted to CNS).")) | |||
| 216 | (exit-function . use-default-char-width-table) | 218 | (exit-function . use-default-char-width-table) |
| 217 | (coding-system euc-tw iso-2022-cn) | 219 | (coding-system euc-tw iso-2022-cn) |
| 218 | (coding-priority euc-tw chinese-big5 iso-2022-cn | 220 | (coding-priority euc-tw chinese-big5 iso-2022-cn |
| 219 | chinese-iso-8bit) | 221 | chinese-iso-8bit chinese-gbk) |
| 220 | (features china-util) | 222 | (features china-util) |
| 221 | (input-method . "chinese-cns-quick") | 223 | (input-method . "chinese-cns-quick") |
| 222 | (documentation . "\ | 224 | (documentation . "\ |