aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/isearch.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 16ab73c73c2..ff85d932923 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -4,7 +4,7 @@
4 4
5;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> 5;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
6 6
7;; |$Date: 1993/05/27 03:33:12 $|$Revision: 1.37 $ 7;; |$Date: 1993/05/29 06:27:47 $|$Revision: 1.38 $
8 8
9;; This file is not yet part of GNU Emacs, but it is based almost 9;; This file is not yet part of GNU Emacs, but it is based almost
10;; entirely on isearch.el which is part of GNU Emacs. 10;; entirely on isearch.el which is part of GNU Emacs.
@@ -524,7 +524,9 @@ is treated as a regexp. See \\[isearch-forward] for more info."
524 ;; isearch-mode can be made modal (in the sense of not returning to 524 ;; isearch-mode can be made modal (in the sense of not returning to
525 ;; the calling function until searching is completed) by entering 525 ;; the calling function until searching is completed) by entering
526 ;; a recursive-edit and exiting it when done isearching. 526 ;; a recursive-edit and exiting it when done isearching.
527 (if recursive-edit (recursive-edit)) 527 (if recursive-edit
528 (let ((isearch-recursive-edit t))
529 (recursive-edit)))
528 ) 530 )
529 531
530 532