X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdestructuring-bind.lisp;h=3e65da75d96e017707da4e121acb8873c65f9b3f;hb=1f7bb609de31bba1a85817496ecbde52a07edf14;hp=7e9b8e1402bb78e5d1a5ffa0793e12dffb4b9909;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/code/destructuring-bind.lisp b/src/code/destructuring-bind.lisp index 7e9b8e1..3e65da7 100644 --- a/src/code/destructuring-bind.lisp +++ b/src/code/destructuring-bind.lisp @@ -12,11 +12,12 @@ (defmacro-mundanely destructuring-bind (lambda-list arg-list &rest body) #!+sb-doc "Bind the variables in LAMBDA-LIST to the contents of ARG-LIST." - (let* ((arg-list-name (gensym "ARG-LIST-"))) + (let ((arg-list-name (gensym "ARG-LIST-"))) (multiple-value-bind (body local-decls) (parse-defmacro lambda-list arg-list-name body nil 'destructuring-bind :anonymousp t - :doc-string-allowed nil) + :doc-string-allowed nil + :wrap-block nil) `(let ((,arg-list-name ,arg-list)) ,@local-decls ,body))))