aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKelly Dean2015-02-18 07:38:13 +0000
committerArtur Malabarba2015-02-18 16:36:24 -0200
commit56f5ea17f19bfb07e263dd2d59a3c61b652fcc3d (patch)
treec2fd1c5842c067221efb5f744b46c79055400d61
parent72f7eded979c672662112304cc8615c0dbcf9803 (diff)
downloademacs-56f5ea17f19bfb07e263dd2d59a3c61b652fcc3d.tar.gz
emacs-56f5ea17f19bfb07e263dd2d59a3c61b652fcc3d.zip
rect.el: Suppress superfluous "Mark set" message from push-mark.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/rect.el3
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 73e139657bb..a15295f4b4e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12015-02-18 Kelly Dean <kelly@prtime.org> 12015-02-18 Kelly Dean <kelly@prtime.org>
2 2
3 * rect.el (rectangle-mark-mode):
4 Suppress superfluous "Mark set" message from push-mark.
5
62015-02-18 Kelly Dean <kelly@prtime.org>
7
3 * help-mode.el (help-go-back, help-go-forward, help-follow): 8 * help-mode.el (help-go-back, help-go-forward, help-follow):
4 * simple.el (yank-pop, pop-to-mark-command, exchange-point-and-mark): 9 * simple.el (yank-pop, pop-to-mark-command, exchange-point-and-mark):
5 * winner.el (winner-redo): 10 * winner.el (winner-redo):
diff --git a/lisp/rect.el b/lisp/rect.el
index c5a548647f3..75585d2f080 100644
--- a/lisp/rect.el
+++ b/lisp/rect.el
@@ -586,8 +586,7 @@ Activates the region if needed. Only lasts until the region is deactivated."
586 (add-hook 'deactivate-mark-hook 586 (add-hook 'deactivate-mark-hook
587 (lambda () (rectangle-mark-mode -1))) 587 (lambda () (rectangle-mark-mode -1)))
588 (unless (region-active-p) 588 (unless (region-active-p)
589 (push-mark) 589 (push-mark (point) t t)
590 (activate-mark)
591 (message "Mark set (rectangle mode)")))) 590 (message "Mark set (rectangle mode)"))))
592 591
593(defun rectangle-exchange-point-and-mark (&optional arg) 592(defun rectangle-exchange-point-and-mark (&optional arg)