0.9.13.22:
[sbcl.git] / src / code / destructuring-bind.lisp
index 1a74b38..58bc4c0 100644 (file)
   "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))))