aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-01-10 22:27:52 +0000
committerRichard M. Stallman <[email protected]>1994-01-10 22:27:52 +0000
commit292a8dff00ddd15a718df631ba413e5745d03798 (patch)
treeaaedca5345e1d284fd9e54385685f3ad63e68d93 /lisp
parentb60247d9eeca5333ea621809da737192f2540455 (diff)
(isearch-mode): If not slow, clear isearch-window-configuration.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/isearch.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index c157f51ecd..8044ca0dcf 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -4,7 +4,7 @@
;; Author: Daniel LaLiberte <[email protected]>
-;; |$Date: 1993/12/25 00:50:10 $|$Revision: 1.58 $
+;; |$Date: 1994/01/02 17:43:16 $|$Revision: 1.59 $
;; This file is part of GNU Emacs.
@@ -503,8 +503,8 @@ is treated as a regexp. See \\[isearch-forward] for more info."
isearch-old-local-map (current-local-map)
search-ring-yank-pointer nil
regexp-search-ring-yank-pointer nil)
- (if isearch-slow-terminal-mode
- (setq isearch-window-configuration (current-window-configuration)))
+ (setq isearch-window-configuration
+ (if isearch-slow-terminal-mode (current-window-configuration) nil))
;; This was for Lucid Emacs. But now that we have pre-command-hook,
;; it causes trouble.