Function: bind*
bind* is an autoloaded macro defined in cond-star.el.gz.
Signature
(bind* &rest BINDINGS)
Documentation
Evaluate BINDINGS like 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* (&rest _bindings)
"Evaluate BINDINGS like `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*' used other than as a `cond*' condition"
nil 'suspicious))