Function: embark--save-excursion
embark--save-excursion is a byte-compiled function defined in
embark.el.
Signature
(embark--save-excursion &rest REST &key RUN &allow-other-keys)
Documentation
Run action without moving point.
This simply calls RUN with the REST of its arguments inside
save-excursion.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(cl-defun embark--save-excursion (&rest rest &key run &allow-other-keys)
"Run action without moving point.
This simply calls RUN with the REST of its arguments inside
`save-excursion'."
(save-excursion (apply run rest)))