From 49c9e863c95eec2d98a6805f68b279ce012dc8e3 Mon Sep 17 00:00:00 2001 From: tomo Date: Wed, 9 Jul 2003 03:50:00 +0000 Subject: [PATCH] Don't add `=gt-pj-1' features into some JIS X 0208:1990 code points. --- lisp/utf-2000/maps-conf.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/utf-2000/maps-conf.el b/lisp/utf-2000/maps-conf.el index 2fcd9d3..d2aeb4c 100644 --- a/lisp/utf-2000/maps-conf.el +++ b/lisp/utf-2000/maps-conf.el @@ -21,8 +21,11 @@ (map-char-attribute (lambda (c v) - (put-char-attribute (decode-char 'japanese-jisx0208-1990 v) - '=gt-pj-1 v) + (unless (memq v '(#x5C37 #x5C52 #x3521 #x5D62 #x5F4A + #x5F5B #x6062 #x4849 #x6173 #x306B + #x6328 #x6352 #x6362)) + (put-char-attribute (decode-char 'japanese-jisx0208-1990 v) + '=gt-pj-1 v)) nil) '=gt-pj-1) -- 1.7.10.4