diff options
-rw-r--r-- | lisp/ChangeLog | 14 | ||||
-rw-r--r-- | lisp/language/chinese.el | 9 |
2 files changed, 23 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f74953cb94e..64ad16653a0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,17 @@ +2003-02-12 Dave Love <fx@gnu.org> + + * language/georgian.el (georgian-ps, georgian-academy): New coding + system. + + * language/chinese.el (chinese-big5-hkscs): New coding system. + (big5-hkscs, cn-big5-hkscs): New aliases. + + * international/mule-conf.el (big5-hkscs, georgian-academy): New + charset. + (ibm1047): Doc fix. + (pt154): Add mime-charset. + (ptcp154, cp154): New aliases. + 2003-02-04 Dave Love <fx@gnu.org> * international/mule.el (charset-iso-final-char) diff --git a/lisp/language/chinese.el b/lisp/language/chinese.el index 9c5b0e516a0..a401e1b34d6 100644 --- a/lisp/language/chinese.el +++ b/lisp/language/chinese.el @@ -130,6 +130,15 @@ (documentation . "Support for Chinese Big5 character set.")) '("Chinese")) +(define-coding-system 'chinese-big5-hkscs + "BIG5-HKSCS 8-bit encoding for Chinese, Hong Kong supplement (MIME:Big5-HKSCS)" + :coding-type 'charset + :mnemonic ?B + :charset-list '(ascii big5-hkscs) + :mime-charset 'big5-hkscs) +(define-coding-system-alias 'big5-hkscs 'chinese-big5-hkscs) +(define-coding-system-alias 'cn-big5-hkscs 'chinese-big5-hkscs) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Chinese CNS11643 (traditional) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |