* lisp/isearch.el (isearch-done): Don't display message "Mark saved"
authorJuri Linkov <juri@jurta.org>
Mon, 29 Aug 2011 20:22:44 +0000 (23:22 +0300)
committerJuri Linkov <juri@jurta.org>
Mon, 29 Aug 2011 20:22:44 +0000 (23:22 +0300)
when arg `edit' is non-nil to prevent its flicker in the echo area.

lisp/ChangeLog
lisp/isearch.el

index 0342394..15296e0 100644 (file)
@@ -1,3 +1,8 @@
+2011-08-29  Juri Linkov  <juri@jurta.org>
+
+       * isearch.el (isearch-done): Don't display message "Mark saved"
+       when arg `edit' is non-nil to prevent its flicker in the echo area.
+
 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
 
        * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
index 8764952..6eab3db 100644 (file)
@@ -952,7 +952,7 @@ NOPUSH is t and EDIT is t."
       (or (and transient-mark-mode mark-active)
          (progn
            (push-mark isearch-opoint t)
-           (or executing-kbd-macro (> (minibuffer-depth) 0)
+           (or executing-kbd-macro (> (minibuffer-depth) 0) edit
                (message "Mark saved where search started")))))
 
   (and (not edit) isearch-recursive-edit (exit-recursive-edit)))