From: Kenichi Handa Date: Fri, 2 Jun 2000 03:19:24 +0000 (+0000) Subject: (isearch-other-meta-char): Fix previous change. X-Git-Tag: emacs-pretest-21.0.90~3559 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ed5c183bc9f593a605224e500c2faf2135f385b2;p=emacs.git (isearch-other-meta-char): Fix previous change. --- 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)))