Function: xwidget-at

xwidget-at is a byte-compiled function defined in xwidget.el.gz.

Signature

(xwidget-at POS)

Documentation

Return xwidget at POS.

Source Code

;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-at (pos)
  "Return xwidget at POS."
  (let* ((disp (get-text-property pos 'display))
         (xw (car (cdr (cdr disp)))))
    (when (xwidget-live-p xw) xw)))