X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdestructuring-bind.lisp;h=58bc4c0bae99ec6d24435f33571dd6993d3373f9;hb=53dd919e3b97fe7a63b6826d812eef6bac0ca9ad;hp=3e65da75d96e017707da4e121acb8873c65f9b3f;hpb=47da3aec921176b189868519273b5bddb8bcc737;p=sbcl.git diff --git a/src/code/destructuring-bind.lisp b/src/code/destructuring-bind.lisp index 3e65da7..58bc4c0 100644 --- a/src/code/destructuring-bind.lisp +++ b/src/code/destructuring-bind.lisp @@ -14,10 +14,10 @@ "Bind the variables in LAMBDA-LIST to the contents of 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 + (parse-defmacro lambda-list arg-list-name body nil 'destructuring-bind + :anonymousp t + :doc-string-allowed nil :wrap-block nil) `(let ((,arg-list-name ,arg-list)) - ,@local-decls - ,body)))) + ,@local-decls + ,body))))