aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2011-08-29 23:22:44 +0300
committerJuri Linkov2011-08-29 23:22:44 +0300
commit9a45d6c33122eba90f3e7378dd091494d10faba7 (patch)
tree64613cd802611a7243888dc3113a03e84c7fde60
parentb31b81a53a0908e16360003c0218dadba897f449 (diff)
downloademacs-9a45d6c33122eba90f3e7378dd091494d10faba7.tar.gz
emacs-9a45d6c33122eba90f3e7378dd091494d10faba7.zip
* 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.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/isearch.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 03423942f4f..15296e09b46 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12011-08-29 Juri Linkov <juri@jurta.org>
2
3 * isearch.el (isearch-done): Don't display message "Mark saved"
4 when arg `edit' is non-nil to prevent its flicker in the echo area.
5
12011-08-28 Chong Yidong <cyd@stupidchicken.com> 62011-08-28 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking 8 * 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."
952 (or (and transient-mark-mode mark-active) 952 (or (and transient-mark-mode mark-active)
953 (progn 953 (progn
954 (push-mark isearch-opoint t) 954 (push-mark isearch-opoint t)
955 (or executing-kbd-macro (> (minibuffer-depth) 0) 955 (or executing-kbd-macro (> (minibuffer-depth) 0) edit
956 (message "Mark saved where search started"))))) 956 (message "Mark saved where search started")))))
957 957
958 (and (not edit) isearch-recursive-edit (exit-recursive-edit))) 958 (and (not edit) isearch-recursive-edit (exit-recursive-edit)))