1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-22 05:51:11 -07:00

(isearch-process-search-char): Write octal 200 correctly.

This commit is contained in:
Richard M. Stallman 1999-07-05 16:49:22 +00:00
parent 9d1fb1792c
commit 8f3c1d763f

View file

@ -1249,7 +1249,7 @@ If you want to search for just a space, type C-q SPC."
;; Append the char to the search string, update the message and re-search.
(isearch-process-search-string
(isearch-char-to-string char)
(if (>= char 0200)
(if (>= char ?\200)
(char-to-string char)
(isearch-text-char-description char))))