]> git.eshelyaron.com Git - emacs.git/commitdiff
(isearch-no-upper-case-p): \\ only quotes one character.
authorRichard M. Stallman <rms@gnu.org>
Mon, 9 Dec 2002 20:23:35 +0000 (20:23 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 9 Dec 2002 20:23:35 +0000 (20:23 +0000)
lisp/isearch.el

index f0f8e5b4fbe1ddee0d3d407fca4fe3f900526069..b8103285aecbed9f8d3398b81bf8d0186b348c29 100644 (file)
@@ -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)))