Function: widget-group-match-inline

widget-group-match-inline is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-group-match-inline WIDGET VALS)

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-group-match-inline (widget vals)
  ;; Match if the components match.
  (let ((args (widget-get widget :args))
	argument answer found)
    (while args
      (setq argument (car args)
	    args     (cdr args))
      (if (setq answer (widget-match-inline argument vals))
	  (setq found (append found (car answer))
		vals (cdr answer))
	(setq vals nil
	      args nil)))
    (if answer
	(cons found vals))))