Function: widget-field-at
widget-field-at is a byte-compiled function defined in wid-edit.el.gz.
Signature
(widget-field-at POS)
Documentation
Return the widget field at POS, or nil if none.
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-field-at (pos)
"Return the widget field at POS, or nil if none."
(let ((field (get-char-property (or pos (point)) 'field)))
(if (eq field 'boundary)
(get-char-property (or pos (point)) 'real-field)
field)))