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 3fc587befbe..99fb61e1572 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -1249,7 +1249,7 @@ If you want to search for just a space, type C-q SPC." | |||
| 1249 | ;; Append the char to the search string, update the message and re-search. | 1249 | ;; Append the char to the search string, update the message and re-search. |
| 1250 | (isearch-process-search-string | 1250 | (isearch-process-search-string |
| 1251 | (isearch-char-to-string char) | 1251 | (isearch-char-to-string char) |
| 1252 | (if (>= char 0200) | 1252 | (if (>= char ?\200) |
| 1253 | (char-to-string char) | 1253 | (char-to-string char) |
| 1254 | (isearch-text-char-description char)))) | 1254 | (isearch-text-char-description char)))) |
| 1255 | 1255 | ||