From d348ec1138cb9537477d7d7a63ef836ad1da85d4 Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 26 Jan 2006 17:52:46 +0000 Subject: [PATCH] (chise-tex-encode-region-for-jis): Don't decompose . --- chise2otf/elisp/chise-tex.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chise2otf/elisp/chise-tex.el b/chise2otf/elisp/chise-tex.el index 1b07312..65ad4b1 100644 --- a/chise2otf/elisp/chise-tex.el +++ b/chise2otf/elisp/chise-tex.el @@ -101,7 +101,8 @@ ;; ((setq ret (encode-char chr '=jis-x0208-1990)) ;; (delete-char) ;; (insert (decode-char '=jis-x0208-1983 ret))) - ((and (setq ret (char-feature chr '=decomposition)) + ((and (not (eq (char-ucs chr) #x0451)) + (setq ret (char-feature chr '=decomposition)) (setq modifier (assq (nth 1 ret) '((?\u0300 . "`") (?\u0301 . "'") -- 1.7.10.4