0.9.2.43:
[sbcl.git] / src / code / destructuring-bind.lisp
index 3e65da7..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))))