diff options
| author | Kenichi Handa | 2000-06-02 03:19:24 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-06-02 03:19:24 +0000 |
| commit | ed5c183bc9f593a605224e500c2faf2135f385b2 (patch) | |
| tree | 0bf1290e46c5a491e23f34f0b3ffd0a74ffc4571 | |
| parent | 2e54623a6d27029c92b1b0f312a4e245dcb95160 (diff) | |
| download | emacs-ed5c183bc9f593a605224e500c2faf2135f385b2.tar.gz emacs-ed5c183bc9f593a605224e500c2faf2135f385b2.zip | |
(isearch-other-meta-char): Fix previous change.
| -rw-r--r-- | lisp/isearch.el | 2 |
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))) |