aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2000-06-02 03:19:24 +0000
committerKenichi Handa2000-06-02 03:19:24 +0000
commited5c183bc9f593a605224e500c2faf2135f385b2 (patch)
tree0bf1290e46c5a491e23f34f0b3ffd0a74ffc4571
parent2e54623a6d27029c92b1b0f312a4e245dcb95160 (diff)
downloademacs-ed5c183bc9f593a605224e500c2faf2135f385b2.tar.gz
emacs-ed5c183bc9f593a605224e500c2faf2135f385b2.zip
(isearch-other-meta-char): Fix previous change.
-rw-r--r--lisp/isearch.el2
1 files changed, 1 insertions, 1 deletions
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."
1161 ;; directly to avoid the input method and keyboard 1161 ;; directly to avoid the input method and keyboard
1162 ;; coding system translating it. 1162 ;; coding system translating it.
1163 (if (and (integerp key) 1163 (if (and (integerp key)
1164 (>= key ?\ ) (< key 256)) 1164 (>= key ?\ ) (/= key 127) (< key 256))
1165 (progn 1165 (progn
1166 (isearch-process-search-char key) 1166 (isearch-process-search-char key)
1167 (setq keylist (cdr keylist))) 1167 (setq keylist (cdr keylist)))