Function: clojure--point-after
clojure--point-after is a byte-compiled function defined in
clojure-mode.el.
Signature
(clojure--point-after &rest ACTIONS)
Documentation
Return POINT after performing ACTIONS.
An action is either the symbol of a function or a two element
list of (fn args) to pass to apply'
Source Code
;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
(defun clojure--point-after (&rest actions)
"Return POINT after performing ACTIONS.
An action is either the symbol of a function or a two element
list of (fn args) to pass to `apply''"
(save-excursion
(dolist (fn-and-args actions)
(let ((f (if (listp fn-and-args) (car fn-and-args) fn-and-args))
(args (if (listp fn-and-args) (cdr fn-and-args) nil)))
(apply f args)))
(point)))