]> git.eshelyaron.com Git - emacs.git/commitdiff
(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 8b0dc9321512c92d1a29e05dedba62ca24073185..7285023dc4486ee9c18153b53eecf9750f692648 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)))