From 9af32ce25cc85be7b95a66b22bbed45af491e334 Mon Sep 17 00:00:00 2001 From: tomo Date: Mon, 17 Nov 2003 05:01:04 +0000 Subject: [PATCH] (ids-read-buffer): Add setting for C[1-7]-HHHH. --- ids-read.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ids-read.el b/ids-read.el index ecc92ff..99ccc40 100644 --- a/ids-read.el +++ b/ids-read.el @@ -50,6 +50,13 @@ chs) (decode-char 'japanese-jisx0208-1990 (string-to-int (match-string 1 chs) 16))) + ((string-match + "C\\([1-7]\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" + chs) + (decode-char + (intern + (concat "chinese-cns11643-" (match-string 1 chs))) + (string-to-int (match-string 2 chs) 16))) ((string-match "CDP-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" chs) (decode-char '=big5-cdp -- 1.7.10.4