Function: widget-group-match
widget-group-match is a byte-compiled function defined in
wid-edit.el.gz.
Signature
(widget-group-match WIDGET VALS)
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-group-match (widget vals)
;; Match if the components match.
(and (listp vals)
(let ((match (widget-group-match-inline widget vals)))
(and match (null (cdr match))))))