summaryrefslogtreecommitdiff
path: root/destructuring-bind.lisp
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-07-28 15:29:55 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-07-28 15:29:55 +0200
commitc51d47e817c4a5c6a9b5a901d1825370a6552398 (patch)
treecb6a0105daa79fb44747e293ceeb4b03ee3f7df6 /destructuring-bind.lisp
parent9186189b62240acdae1f3bd6d4146cec00cddda3 (diff)
In all Lisp source files, put EXPORT lists on top.
Diffstat (limited to 'destructuring-bind.lisp')
-rw-r--r--destructuring-bind.lisp10
1 files changed, 5 insertions, 5 deletions
diff --git a/destructuring-bind.lisp b/destructuring-bind.lisp
index 1207649..8767630 100644
--- a/destructuring-bind.lisp
+++ b/destructuring-bind.lisp
@@ -1,3 +1,8 @@
+(export '(destructuring-bind lambda-list-keywords
+ &allow-other-keys &aux &body &environment &key &optional &rest
+ &whole))
+
+
;; D-B may not expand to (but _may_ itself use!) plain list function
;; calls because these are defined in list-functions.lisp by way of
;; DEFUN, which is in turn based on D-B. Because of this, we define our
@@ -120,8 +125,3 @@
(%defmacro* destructuring-bind (tree expression . body)
`(d-b ,tree nil nil ,expression ,@body))
-
-
-(export '(destructuring-bind lambda-list-keywords
- &allow-other-keys &aux &body &environment &key &optional &rest
- &whole))