Function: when-let*

when-let* is a macro defined in subr.el.gz.

Signature

(when-let* VARLIST &rest BODY)

Documentation

Bind variables according to VARLIST and conditionally evaluate BODY.

This is like when-let but doesn't handle a VARLIST of the form
(SYMBOL SOMETHING) specially.

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defmacro when-let* (varlist &rest body)
  "Bind variables according to VARLIST and conditionally evaluate BODY.
This is like `when-let' but doesn't handle a VARLIST of the form
\(SYMBOL SOMETHING) specially."
  (declare (indent 1) (debug if-let*))
  (list 'if-let* varlist (macroexp-progn body)))