aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-12-09 20:23:35 +0000
committerRichard M. Stallman2002-12-09 20:23:35 +0000
commitf4be3f89294c67a7a0846284c72dbd4982af2eb6 (patch)
tree90f10c9aededf7bec2415d2d663678ac6e20cf2b
parentaacad7aa1ff5bb6f6374ed739c1bd31a652004ae (diff)
downloademacs-f4be3f89294c67a7a0846284c72dbd4982af2eb6.tar.gz
emacs-f4be3f89294c67a7a0846284c72dbd4982af2eb6.zip
(isearch-no-upper-case-p): \\ only quotes one character.
-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."
1871 (if (and regexp-flag (eq char ?\\)) 1871 (if (and regexp-flag (eq char ?\\))
1872 (setq quote-flag (not quote-flag)) 1872 (setq quote-flag (not quote-flag))
1873 (if (and (not quote-flag) (not (eq char (downcase char)))) 1873 (if (and (not quote-flag) (not (eq char (downcase char))))
1874 (setq found t)))) 1874 (setq found t))
1875 (setq quote-flag nil)))
1875 (setq i (1+ i))) 1876 (setq i (1+ i)))
1876 (not found))) 1877 (not found)))
1877 1878