Function: cond*-non-exit-clause-p
cond*-non-exit-clause-p is a byte-compiled function defined in
cond-star.el.gz.
Signature
(cond*-non-exit-clause-p CLAUSE)
Documentation
If CLAUSE, a cond* clause, is a non-exit clause, return t.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cond-star.el.gz
(defun cond*-non-exit-clause-p (clause)
"If CLAUSE, a cond* clause, is a non-exit clause, return t."
(or (null (cdr-safe clause)) ;; clause has only one element.
(and (cdr-safe clause)
;; Starts with t.
(or (eq (car clause) t)
;; Starts with a `bind*' pseudo-form.
(and (consp (car clause))
(eq (caar clause) 'bind*))))))