Function: widget-checklist-match-up

widget-checklist-match-up is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-checklist-match-up ARGS VALS)

Documentation

Return the first type from ARGS that matches VALS.

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-checklist-match-up (args vals)
  "Return the first type from ARGS that matches VALS."
  (let (current found)
    (while (and args (null found))
      (setq current (car args)
	    args (cdr args)
	    found (widget-match-inline current vals)))
    (if found
	current)))