Function: bind-and*
bind-and* is an autoloaded macro defined in cond-star.el.gz.
Signature
(bind-and* &rest BINDINGS)
Documentation
Evaluate BINDINGS like if-let*.
This is not really a Lisp operator; it is meaningful only in the
CONDITION of a cond* clause. See cond* for details.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cond-star.el.gz
;;;###autoload
(defmacro bind-and* (&rest _bindings)
"Evaluate BINDINGS like `if-let*'.
This is not really a Lisp operator; it is meaningful only in the
CONDITION of a `cond*' clause. See `cond*' for details."
(macroexp-warn-and-return "`bind-and*' used other than as a `cond*' condition"
nil 'suspicious))