From ed93f90dbc3e7b49de842f3d8af4f753c953a000 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Tue, 6 Jul 2021 18:41:06 +0900 Subject: [PATCH] (ids-parse-terminal): Support U+2FF1-itaiji-001, U+2FFB-itaiji-001 and U+2FF1-itaiji-002. (ids-parse-op-2): Ditto. --- ids.el | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ids.el b/ids.el index ff19961..adfd761 100644 --- a/ids.el +++ b/ids.el @@ -49,7 +49,10 @@ (memq (encode-char chr '=ucs-var-001) '(#x2FF0)) (memq (encode-char chr '=ucs-itaiji-001) - '(#x2FF9 #x2FF6))) + '(#x2FF1 #x2FF9 #x2FF6 #x2FFB)) + (memq (encode-char chr '=ucs-itaiji-002) + '(#x2FF1)) + ) (if (and ucs (<= #xE000 ucs)(<= ucs #xF8FF) (setq big5 (encode-char chr 'chinese-big5))) (setq chr (decode-char '=big5-cdp big5))) @@ -67,7 +70,10 @@ (memq (encode-char chr '=ucs-var-001) '(#x2FF0)) (memq (encode-char chr '=ucs-itaiji-001) - '(#x2FF9 #x2FF6))) + '(#x2FF1 #x2FF9 #x2FF6 #x2FFB)) + (memq (encode-char chr '=ucs-itaiji-002) + '(#x2FF1)) + ) (cons chr (substring string 1)))))) -- 1.7.10.4