changeset 48775:25ef28e528f4

(isearch-no-upper-case-p): \\ only quotes one character.
author Richard M. Stallman <rms@gnu.org>
date Mon, 09 Dec 2002 20:23:35 +0000
parents c41c265141e2
children 67a496befc04
files lisp/isearch.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/isearch.el	Mon Dec 09 20:12:57 2002 +0000
+++ b/lisp/isearch.el	Mon Dec 09 20:23:35 2002 +0000
@@ -1871,7 +1871,8 @@
 	(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)))