Function: posn-image

posn-image is a byte-compiled function defined in subr.el.gz.

Signature

(posn-image POSITION)

Documentation

Return the image object of POSITION.

Value is a list (image ...), or nil if not an image. POSITION should be a list of the form returned by the event-start and event-end functions.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defsubst posn-image (position)
  "Return the image object of POSITION.
Value is a list (image ...), or nil if not an image.
POSITION should be a list of the form returned by the `event-start'
and `event-end' functions."
  (declare (side-effect-free t))
  (nth 7 position))