]> git.eshelyaron.com Git - emacs.git/commitdiff
(isearch-process-search-char): Write octal 200 correctly.
authorRichard M. Stallman <rms@gnu.org>
Mon, 5 Jul 1999 16:49:22 +0000 (16:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 5 Jul 1999 16:49:22 +0000 (16:49 +0000)
lisp/isearch.el

index 3fc587befbe89d30cead9a60e97d01670f2c9029..99fb61e1572558e5f45993d26d177982d6ca28f7 100644 (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))))