summaryrefslogtreecommitdiff
path: root/defun-1.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'defun-1.lisp')
-rw-r--r--defun-1.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/defun-1.lisp b/defun-1.lisp
index a0c2416..6038e88 100644
--- a/defun-1.lisp
+++ b/defun-1.lisp
@@ -1,3 +1,6 @@
+(export '(defmacro defun))
+
+
(%defmacro* defun (name lambda-list . body)
(let ((lambda-sym (gensym)))
`(%defun ,name ,lambda-sym
@@ -15,6 +18,3 @@
(,env-sym (second ,arg-sym)))
(d-b ,lambda-list ,env-sym ,whole-sym ,lambda-sym
,@body)))))
-
-
-(export '(defmacro defun))