Function: posn-timestamp
posn-timestamp is a byte-compiled function defined in subr.el.gz.
Signature
(posn-timestamp POSITION)
Documentation
Return the timestamp of POSITION.
POSITION should be a list of the form returned by the event-start
and event-end functions.
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defsubst posn-timestamp (position)
"Return the timestamp of POSITION.
POSITION should be a list of the form returned by the `event-start'
and `event-end' functions."
(declare (side-effect-free t))
(nth 3 position))