changeset 24924:ef8649234d91

(isearch-process-search-char): Write octal 200 correctly.
author Richard M. Stallman <rms@gnu.org>
date Mon, 05 Jul 1999 16:49:22 +0000
parents 702b3d792db9
children 5169ebe70135
files lisp/isearch.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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))))