summaryrefslogtreecommitdiff
path: root/lisp/isearch.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-12-09 20:23:35 +0000
committerRichard M. Stallman <rms@gnu.org>2002-12-09 20:23:35 +0000
commite6865cefaab8a5cd4a8f5b2f88414ea2a7936a78 (patch)
tree5093dd1766c05e31529f4f7ce7754559d03c1dff /lisp/isearch.el
parent8b342d6c05e49a1ebe9cf69ecebf3772f57d8207 (diff)
downloademacs-e6865cefaab8a5cd4a8f5b2f88414ea2a7936a78.tar.gz
(isearch-no-upper-case-p): \\ only quotes one character.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r--lisp/isearch.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index f0f8e5b4fbe..b8103285aec 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -1871,7 +1871,8 @@ since they have special meaning in a regexp."
(if (and regexp-flag (eq char ?\\))
(setq quote-flag (not quote-flag))
(if (and (not quote-flag) (not (eq char (downcase char))))
- (setq found t))))
+ (setq found t))
+ (setq quote-flag nil)))
(setq i (1+ i)))
(not found)))