diff options
| -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))) |