language/chinese.el ("Chinese-GB", "Chinese-BIG5", "Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to coding-priority property of these language environment.
This commit is contained in:
parent
4d0b77fc57
commit
d607d30302
2 changed files with 12 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
2012-09-13 Kenichi Handa <handa@gnu.org>
|
||||
|
||||
* language/chinese.el ("Chinese-GB", "Chinese-BIG5")
|
||||
("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
|
||||
`coding-priority' property of these language environment.
|
||||
|
||||
2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Fix glitches caused by addition of psec to timers (Bug#12430).
|
||||
|
|
|
@ -110,7 +110,8 @@
|
|||
(use-cjk-char-width-table 'zh_CN)))
|
||||
(exit-function . use-default-char-width-table)
|
||||
(coding-system chinese-iso-8bit iso-2022-cn chinese-hz)
|
||||
(coding-priority chinese-iso-8bit chinese-big5 iso-2022-cn)
|
||||
(coding-priority chinese-iso-8bit chinese-gbk chinese-big5
|
||||
iso-2022-cn)
|
||||
(input-method . "chinese-py-punct")
|
||||
(features china-util)
|
||||
(sample-text . "Chinese ($AVPND(B,$AFUM(;0(B,$A::So(B) $ADc:C(B")
|
||||
|
@ -140,7 +141,8 @@
|
|||
(use-cjk-char-width-table 'zh_HK)))
|
||||
(exit-function . use-default-char-width-table)
|
||||
(coding-system chinese-big5 chinese-iso-7bit)
|
||||
(coding-priority chinese-big5 iso-2022-cn chinese-iso-8bit)
|
||||
(coding-priority chinese-big5 iso-2022-cn chinese-iso-8bit
|
||||
chinese-gbk)
|
||||
(input-method . "chinese-py-punct-b5")
|
||||
(ctext-non-standard-encodings "big5-0")
|
||||
(features china-util)
|
||||
|
@ -196,7 +198,7 @@
|
|||
(exit-function . use-default-char-width-table)
|
||||
(coding-system iso-2022-cn euc-tw)
|
||||
(coding-priority iso-2022-cn euc-tw chinese-big5
|
||||
chinese-iso-8bit)
|
||||
chinese-iso-8bit chinese-gbk)
|
||||
(features china-util)
|
||||
(input-method . "chinese-cns-quick")
|
||||
;; Fixme: presumably it won't accept big5 now.
|
||||
|
@ -216,7 +218,7 @@ accepts Big5 for input also (which is then converted to CNS)."))
|
|||
(exit-function . use-default-char-width-table)
|
||||
(coding-system euc-tw iso-2022-cn)
|
||||
(coding-priority euc-tw chinese-big5 iso-2022-cn
|
||||
chinese-iso-8bit)
|
||||
chinese-iso-8bit chinese-gbk)
|
||||
(features china-util)
|
||||
(input-method . "chinese-cns-quick")
|
||||
(documentation . "\
|
||||
|
|
Loading…
Add table
Reference in a new issue