summaryrefslogtreecommitdiff
path: root/defun-0.lisp
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-07-27 18:19:33 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-07-27 18:19:33 +0200
commit0d52c58f1e8941c4c08182710abcb327489b8c99 (patch)
tree5d314d9f58fe3d09f18b9475cb18273acd0024c2 /defun-0.lisp
parentea2bddd8ab02ec50b3feb103bd9e698c64bc423f (diff)
Use DEFUN in order to redefine functions used to implement DEFUN after it has been defined itself.
Diffstat (limited to 'defun-0.lisp')
-rw-r--r--defun-0.lisp5
1 files changed, 5 insertions, 0 deletions
diff --git a/defun-0.lisp b/defun-0.lisp
new file mode 100644
index 0000000..5b95711
--- /dev/null
+++ b/defun-0.lisp
@@ -0,0 +1,5 @@
+(%defmacro* defun args
+ `(%defun* ,@args))
+
+(%defmacro* defmacro args
+ `(%defmacro* ,@args))