diff options
| author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-07-20 16:33:00 +0200 | 
|---|---|---|
| committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-07-20 16:33:00 +0200 | 
| commit | d71db9648ec057406abb25698ddaddf0fcfb9421 (patch) | |
| tree | 5089a6c5b01477d89813459c52d7fb1132a1b98c | |
| parent | 9c8e103dc4863faa258b14bdfcd20df76df0f86f (diff) | |
Fix symbol macro expansion.
| -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 8ac5d29..89596f5 100644 --- a/sb-eval2.lisp +++ b/sb-eval2.lisp @@ -691,7 +691,7 @@          (symbol           (let ((macro? (context-find-symbol-macro context form)))                  (if macro? -                    (prepare-form macro?) +                    (prepare-form macro? context)                      (prepare-ref form context))))          (cons           (case (first form) | 
