From ed5c183bc9f593a605224e500c2faf2135f385b2 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Fri, 2 Jun 2000 03:19:24 +0000 Subject: [PATCH] (isearch-other-meta-char): Fix previous change. --- lisp/isearch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/isearch.el b/lisp/isearch.el index 8b0dc932151..7285023dc44 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -1161,7 +1161,7 @@ and the meta character is unread so that it applies to editing the string." ;; directly to avoid the input method and keyboard ;; coding system translating it. (if (and (integerp key) - (>= key ?\ ) (< key 256)) + (>= key ?\ ) (/= key 127) (< key 256)) (progn (isearch-process-search-char key) (setq keylist (cdr keylist))) -- 2.39.5