0.8.15.18: Linkage table tweaks & alien bugfix
[sbcl.git] / src / code / destructuring-bind.lisp
index 7e9b8e1..3e65da7 100644 (file)
 (defmacro-mundanely destructuring-bind (lambda-list arg-list &rest body)
   #!+sb-doc
   "Bind the variables in LAMBDA-LIST to the contents of ARG-LIST."
-  (let* ((arg-list-name (gensym "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)
+                       :doc-string-allowed nil
+                        :wrap-block nil)
       `(let ((,arg-list-name ,arg-list))
         ,@local-decls
         ,body))))