# HG changeset patch # User Richard M. Stallman # Date 931193362 0 # Node ID ef8649234d911f9ad376f5539a2e3f7bd1c1dd12 # Parent 702b3d792db9d913d0134d6d5873e8c3c4a15e6f (isearch-process-search-char): Write octal 200 correctly. diff -r 702b3d792db9 -r ef8649234d91 lisp/isearch.el --- a/lisp/isearch.el Mon Jul 05 16:00:07 1999 +0000 +++ b/lisp/isearch.el Mon Jul 05 16:49:22 1999 +0000 @@ -1249,7 +1249,7 @@ ;; 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))))