From eb260edbc2a89a810e5e0e76e5b8341118c82e78 Mon Sep 17 00:00:00 2001 From: morioka Date: Wed, 22 Apr 1998 08:40:55 +0000 Subject: [PATCH] =?utf8?q?Don't=20use=20HIRAGANA=20LETTER=20A=20(=1B$B$"=1B(?= =?utf8?q?B)=20to=20detect=20character=20indexing=20(Emacs=2020.3=20or=20lat?= =?utf8?q?er).?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- EMU-ELS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EMU-ELS b/EMU-ELS index 625789e..17d9275 100644 --- a/EMU-ELS +++ b/EMU-ELS @@ -25,7 +25,8 @@ ) (running-mule-merged-emacs ;; for Emacs 20.1 or later - (cons (if (= (length "あ") 1) + (cons (if (and (fboundp 'set-buffer-multibyte) + (subrp (symbol-function 'set-buffer-multibyte))) 'emu-e20_3 ; for Emacs 20.3 'emu-e20_2 ; for Emacs 20.1 and 20.2 ) -- 1.7.10.4