From: Richard M. Stallman Date: Mon, 9 Dec 2002 20:23:35 +0000 (+0000) Subject: (isearch-no-upper-case-p): \\ only quotes one character. X-Git-Tag: ttn-vms-21-2-B4~12065 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f4be3f89294c67a7a0846284c72dbd4982af2eb6;p=emacs.git (isearch-no-upper-case-p): \\ only quotes one character. --- 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)))