From: Richard M. Stallman Date: Mon, 26 Dec 1994 05:09:07 +0000 (+0000) Subject: (isearch-mode): Set mouse-leave-buffer-hook. X-Git-Tag: emacs-19.34~5599 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6e5cd0ae315d1bc9d1c34c8b4847e7b1c1fa2991;p=emacs.git (isearch-mode): Set mouse-leave-buffer-hook. (isearch-done): Clear it. --- diff --git a/lisp/isearch.el b/lisp/isearch.el index c1a92351cb3..03e0ea2fc83 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -4,7 +4,7 @@ ;; Author: Daniel LaLiberte -;; |$Date: 1994/12/15 02:06:45 $|$Revision: 1.80 $ +;; |$Date: 1994/12/17 00:41:34 $|$Revision: 1.81 $ ;; This file is part of GNU Emacs. @@ -507,6 +507,8 @@ is treated as a regexp. See \\[isearch-forward] for more info." (isearch-update) (run-hooks 'isearch-mode-hook) + (setq mouse-leave-buffer-hook '(isearch-done)) + ;; 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. @@ -555,8 +557,8 @@ is treated as a regexp. See \\[isearch-forward] for more info." isearch-yank-flag nil) ) - (defun isearch-done (&optional nopush edit) + (setq mouse-leave-buffer-hook nil) ;; Called by all commands that terminate isearch-mode. ;; If NOPUSH is non-nil, we don't push the string on the search ring. (setq overriding-local-map nil)