(isearch-process-search-char): Write octal 200 correctly.
This commit is contained in:
parent
9d1fb1792c
commit
8f3c1d763f
1 changed files with 1 additions and 1 deletions
|
@ -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))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue