Function: avy-push-mark

avy-push-mark is a byte-compiled function defined in avy.el.

Signature

(avy-push-mark)

Documentation

Store the current point and window.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy-push-mark ()
  "Store the current point and window."
  (let ((inhibit-message t))
    (ring-insert avy-ring
                 (cons (point) (selected-window)))
    (unless (region-active-p)
      (push-mark))))