diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-07-18 17:15:20 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-07-18 17:15:20 +0200 |
commit | deee773f77c013a7306033beb036ba670270c74d (patch) | |
tree | 8285e6aac412fc6ba7adfe74512c941cbcfd7c39 | |
parent | cc3703832439baceb0a84d042e7ff3340e3993c1 (diff) |
Fix symbol macro application.
-rw-r--r-- | sb-eval2.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sb-eval2.lisp b/sb-eval2.lisp index 843bacd..0a2828e 100644 --- a/sb-eval2.lisp +++ b/sb-eval2.lisp @@ -551,7 +551,7 @@ (symbol (let ((macro? (context-find-symbol-macro context form))) (if macro? - (funcall (the function (cdr macro?))) + (prepare-form macro?) (prepare-ref form context)))) (cons (case (first form) |