X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdestructuring-bind.lisp;h=3e65da75d96e017707da4e121acb8873c65f9b3f;hb=5cd0fc84df83d1b3321b7fc969843207721de429;hp=1a74b3879a9f271b69949fbfbb16561fca490e9b;hpb=670010e3f3dcd62efaf23f61abdc73950edb88c6;p=sbcl.git diff --git a/src/code/destructuring-bind.lisp b/src/code/destructuring-bind.lisp index 1a74b38..3e65da7 100644 --- a/src/code/destructuring-bind.lisp +++ b/src/code/destructuring-bind.lisp @@ -16,7 +16,8 @@ (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))))