diff options
| author | Richard M. Stallman | 1999-07-05 16:49:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-07-05 16:49:22 +0000 |
| commit | 8f3c1d763f2d433eae357a60d210910d0ed7e252 (patch) | |
| tree | 113caf852a587af2041036a1970dc5dee37200b3 | |
| parent | 9d1fb1792cbdfe71d0729eb56820d934483d8beb (diff) | |
| download | emacs-8f3c1d763f2d433eae357a60d210910d0ed7e252.tar.gz emacs-8f3c1d763f2d433eae357a60d210910d0ed7e252.zip | |
(isearch-process-search-char): Write octal 200 correctly.
| -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 | ||