Function: widget-editable-list-match

widget-editable-list-match is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-editable-list-match WIDGET VALUE)

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-editable-list-match (widget value)
  ;; Value must be a list and all the members must match the type.
  (and (listp value)
       (null (cdr (widget-editable-list-match-inline widget value)))))