From 14e7cb73cf809a040e4223bb4ece4325d047cc1b Mon Sep 17 00:00:00 2001 From: tomo Date: Mon, 1 Jul 2002 09:29:46 +0000 Subject: [PATCH] (ids-read-buffer): Accept J90-hhhh. --- ids-read.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ids-read.el b/ids-read.el index 16bd7e8..f759d14 100644 --- a/ids-read.el +++ b/ids-read.el @@ -46,6 +46,10 @@ ((string-match "U[-+]\\([0-9A-F]+\\)" chs) (decode-char 'ucs (string-to-int (match-string 1 chs) 16))) + ((string-match "J90-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" + chs) + (decode-char 'japanese-jisx0208-1990 + (string-to-int (match-string 1 chs) 16))) ((string-match "M-\\([0-9]+\\)'" chs) (setq code (string-to-int (match-string 1 chs))) (map-char-attribute -- 1.7.10.4