From 110105ffd62716cde47030525f8063278209c100 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Wed, 3 Jun 2020 13:51:54 +0900 Subject: [PATCH 1/1] Treat the difference of representative glyph-images of 1-67-14 between JIS X 0213:2000 and :2004 as the difference in glyph-image granularity. --- lisp/utf-2000/maps-conf.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/utf-2000/maps-conf.el b/lisp/utf-2000/maps-conf.el index 8b12263..c81a0fa 100644 --- a/lisp/utf-2000/maps-conf.el +++ b/lisp/utf-2000/maps-conf.el @@ -239,7 +239,8 @@ (put-char-attribute char '=ucs@jis/2004 ucs))) ) (rep-char - (unless (and (= ku 47)(= ten 64)) + (unless (or (and (= ku 47)(= ten 64)) + (and (= ku 67)(= ten 14))) (put-char-attribute rep-char '==jis-x0213-1@2000 code) (remove-char-attribute rep-char '==jis-x0213-1) (remove-char-attribute rep-char '==jis-x0213-1@2004) -- 1.7.10.4