aboutsummaryrefslogtreecommitdiffstats
path: root/defmacex.scm
diff options
context:
space:
mode:
Diffstat (limited to 'defmacex.scm')
-rw-r--r--defmacex.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/defmacex.scm b/defmacex.scm
index 71d7b6c..2b2cf88 100644
--- a/defmacex.scm
+++ b/defmacex.scm
@@ -41,7 +41,7 @@
;@
(define (defmacro:expand* e)
(if (pair? e)
- (let* ((c (macroexpand-1 e)))
+ (let* ((c (macroexpand e)))
(if (not (eq? e c))
(defmacro:expand* c)
(case (car e)