From: morioka Date: Wed, 22 Apr 1998 08:40:55 +0000 (+0000) Subject: Don't use HIRAGANA LETTER A (あ) to detect character indexing (Emacs X-Git-Tag: apel-8_4~2 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=eb260edbc2a89a810e5e0e76e5b8341118c82e78;p=elisp%2Fapel.git Don't use HIRAGANA LETTER A (あ) to detect character indexing (Emacs 20.3 or later). --- 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 )