summaryrefslogtreecommitdiff
path: root/lisp/isearch.el
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2000-06-02 03:19:24 +0000
committerKenichi Handa <handa@m17n.org>2000-06-02 03:19:24 +0000
commit3e5fd352abbca7d56aab78842720d1faa361632f (patch)
tree3214131b71e6c8adc0913df88c652d1e66bd6048 /lisp/isearch.el
parent47bddf9c967b6665f5bab6be801989dbc26392f0 (diff)
downloademacs-3e5fd352abbca7d56aab78842720d1faa361632f.tar.gz
(isearch-other-meta-char): Fix previous change.
Diffstat (limited to 'lisp/isearch.el')
-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."
;; 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)))