From: Juri Linkov Date: Mon, 29 Aug 2011 20:22:44 +0000 (+0300) Subject: * lisp/isearch.el (isearch-done): Don't display message "Mark saved" X-Git-Tag: emacs-pretest-24.0.90~104^2~152^2~36 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9a45d6c33122eba90f3e7378dd091494d10faba7;p=emacs.git * lisp/isearch.el (isearch-done): Don't display message "Mark saved" when arg `edit' is non-nil to prevent its flicker in the echo area. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 03423942f4f..15296e09b46 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2011-08-29 Juri Linkov + + * 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 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking diff --git a/lisp/isearch.el b/lisp/isearch.el index 8764952dbf5..6eab3dbcbc4 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -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)))