(isearch-other-meta-char): Fix previous change.
authorKenichi Handa <handa@m17n.org>
Fri, 2 Jun 2000 03:19:24 +0000 (03:19 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 2 Jun 2000 03:19:24 +0000 (03:19 +0000)
lisp/isearch.el

index 8b0dc93..7285023 100644 (file)
@@ -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)))