From 986a094871ed673503a088f2ecb7b5125b9becfb Mon Sep 17 00:00:00 2001 From: tomo Date: Tue, 25 Jun 2002 07:13:31 +0000 Subject: [PATCH] (ids-read-buffer): Fix problem about M-nnnnn' and M-nnnnn". --- ids-read.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ids-read.el b/ids-read.el index d37e338..6322c09 100644 --- a/ids-read.el +++ b/ids-read.el @@ -46,7 +46,7 @@ ((string-match "U[-+]\\([0-9A-F]+\\)" chs) (decode-char 'ucs (string-to-int (match-string 1 chs) 16))) - ((string-match "M-\\([0-9]+\\)" chs) + ((string-match "M-\\([0-9]+\\)\\([^'\"]\\|$\\)" chs) (decode-char 'ideograph-daikanwa (string-to-int (match-string 1 chs)))) ((string-match "CB\\([0-9]+\\)" chs) -- 1.7.10.4