Function: xref--push-forward
xref--push-forward is a byte-compiled function defined in xref.el.gz.
Signature
(xref--push-forward M)
Documentation
Push marker M onto the forward history stack.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
(defun xref--push-forward (m)
"Push marker M onto the forward history stack."
(let ((history (xref--get-history)))
(unless (equal m (cadr history))
(push m (cdr history)))))