Function: ert--button-action-position

ert--button-action-position is a byte-compiled function defined in ert.el.gz.

Signature

(ert--button-action-position)

Documentation

The buffer position where the last button action was triggered.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert--button-action-position ()
  "The buffer position where the last button action was triggered."
  (cond ((integerp last-command-event)
         (point))
        ((eventp last-command-event)
         (posn-point (event-start last-command-event)))
        (t (cl-assert nil))))