changeset 3385:1ea5ec97ae18

(isearch-mode): If enter recursive-edit, also bind isearch-recursive-edit.
author Richard M. Stallman <rms@gnu.org>
date Tue, 01 Jun 1993 04:52:28 +0000
parents 55e7bbf78b1a
children bc4729d67e6e
files lisp/isearch.el
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/isearch.el	Tue Jun 01 04:28:54 1993 +0000
+++ b/lisp/isearch.el	Tue Jun 01 04:52:28 1993 +0000
@@ -4,7 +4,7 @@
 
 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
 
-;; |$Date: 1993/05/27 03:33:12 $|$Revision: 1.37 $
+;; |$Date: 1993/05/29 06:27:47 $|$Revision: 1.38 $
 
 ;; This file is not yet part of GNU Emacs, but it is based almost
 ;; entirely on isearch.el which is part of GNU Emacs.
@@ -524,7 +524,9 @@
   ;; isearch-mode can be made modal (in the sense of not returning to 
   ;; the calling function until searching is completed) by entering 
   ;; a recursive-edit and exiting it when done isearching.
-  (if recursive-edit (recursive-edit))
+  (if recursive-edit
+      (let ((isearch-recursive-edit t))
+	(recursive-edit)))
   )