0.9.18.71: fix build on Darwin 7.9.0 (OS X 10.3)
[sbcl.git] / src / code / destructuring-bind.lisp
index a3b7550..4ea6b48 100644 (file)
@@ -9,17 +9,16 @@
 
 (in-package "SB!IMPL")
 
-(file-comment
-  "$Header$")
-
-(defmacro-mundanely destructuring-bind (lambda-list arg-list &rest body)
+(defmacro-mundanely destructuring-bind (lambda-list expression &rest body)
   #!+sb-doc
-  "Bind the variables in LAMBDA-LIST to the contents of ARG-LIST."
-  (let* ((arg-list-name (gensym "ARG-LIST-")))
+  "Bind the variables in LAMBDA-LIST to the corresponding values in the
+tree structure resulting from the evaluation of EXPRESSION."
+  (let ((whole-name (gensym "WHOLE")))
     (multiple-value-bind (body local-decls)
-       (parse-defmacro lambda-list arg-list-name body nil 'destructuring-bind
-                       :anonymousp t
-                       :doc-string-allowed nil)
-      `(let ((,arg-list-name ,arg-list))
-        ,@local-decls
-        ,body))))
+        (parse-defmacro lambda-list whole-name body nil 'destructuring-bind
+                        :anonymousp t
+                        :doc-string-allowed nil
+                        :wrap-block nil)
+      `(let ((,whole-name ,expression))
+         ,@local-decls
+         ,body))))