Mercurial > emacs
changeset 29377:b614192b22ce
(isearch-other-meta-char): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 02 Jun 2000 03:19:24 +0000 |
parents | 2762f0604b07 |
children | 141820271eff |
files | lisp/isearch.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/isearch.el Fri Jun 02 03:18:38 2000 +0000 +++ b/lisp/isearch.el Fri Jun 02 03:19:24 2000 +0000 @@ -1161,7 +1161,7 @@ ;; 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)))