From: Richard M. Stallman Date: Mon, 5 Jul 1999 16:49:22 +0000 (+0000) Subject: (isearch-process-search-char): Write octal 200 correctly. X-Git-Tag: emacs-20.4~25 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8f3c1d763f2d433eae357a60d210910d0ed7e252;p=emacs.git (isearch-process-search-char): Write octal 200 correctly. --- 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))))