mirror of
https://github.com/abo-abo/avy.git
synced 2025-10-13 05:23:05 +00:00
avy.el (avy-push-mark): Turn off message
This commit is contained in:
parent
7d73ceeb74
commit
fd0101e9e3
9
avy.el
9
avy.el
@ -2053,10 +2053,11 @@ The window scope is determined by `avy-all-windows' (ARG negates it)."
|
||||
|
||||
(defun avy-push-mark ()
|
||||
"Store the current point and window."
|
||||
(ring-insert avy-ring
|
||||
(cons (point) (selected-window)))
|
||||
(unless (region-active-p)
|
||||
(push-mark)))
|
||||
(let ((inhibit-message t))
|
||||
(ring-insert avy-ring
|
||||
(cons (point) (selected-window)))
|
||||
(unless (region-active-p)
|
||||
(push-mark))))
|
||||
|
||||
(defun avy-pop-mark ()
|
||||
"Jump back to the last location of `avy-push-mark'."
|
||||
|
Loading…
x
Reference in New Issue
Block a user