summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1999-07-05 16:49:22 +0000
committerRichard M. Stallman <rms@gnu.org>1999-07-05 16:49:22 +0000
commit8f3c1d763f2d433eae357a60d210910d0ed7e252 (patch)
tree113caf852a587af2041036a1970dc5dee37200b3
parent9d1fb1792cbdfe71d0729eb56820d934483d8beb (diff)
downloademacs-8f3c1d763f2d433eae357a60d210910d0ed7e252.tar.gz
(isearch-process-search-char): Write octal 200 correctly.
-rw-r--r--lisp/isearch.el2
1 files changed, 1 insertions, 1 deletions
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))))