fixed bug in quasiquote when the symbols quasiquote, unquote,

unquote-splicing are introduced.
This commit is contained in:
Abdulaziz Ghuloum 2009-10-21 08:55:42 +03:00
parent d03fbfe4ef
commit 84e0f4ab6d
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
1863
1864

View File

@ -1649,7 +1649,7 @@
(define quasiquote-macro
(let ()
(define (datum x)
(list (scheme-stx 'quote) (mkstx x '() '() '())))
(list (scheme-stx 'quote) (mkstx x top-mark* '() '())))
(define-syntax app
(syntax-rules (quote)
((_ 'x arg* ...)