From 8f3c1d763f2d433eae357a60d210910d0ed7e252 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 5 Jul 1999 16:49:22 +0000 Subject: [PATCH] (isearch-process-search-char): Write octal 200 correctly. --- lisp/isearch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." ;; 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)))) -- 2.39.2