Function: widget-choice-match-inline

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

Signature

(widget-choice-match-inline WIDGET VALS)

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-choice-match-inline (widget vals)
  ;; Matches if one of the choices matches.
  (let ((args (widget-get widget :args))
	current found)
    (while (and args (null found))
      (setq current (car args)
	    args (cdr args)
	    found (widget-match-inline current vals)))
    found))