Fix **racketmodname.

The case where (car a) is a string wasn't handled correctly. The error was provoked by sicp-manual.scrbl.
original commit: 9a4f6b1a194cda0b841bac36df18fa4b822bf469
This commit is contained in:
Jens Axel Søgaard 2014-08-03 10:50:16 +02:00 committed by Sam Tobin-Hochstadt
parent 8baf45e435
commit 7be7c29080

View File

@ -177,7 +177,8 @@
[rest (let loop ([a (cdr (syntax-e stx))] [head? #f])
(cond
[(identifier? a) (datum->syntax #f (syntax-e a) a a)]
[(and head? (pair? a) (free-identifier=? #'unsyntax (car a)))
[(and head? (pair? a) (and (identifier? (car a))
(free-identifier=? #'unsyntax (car a))))
a]
[(pair? a) (cons (loop (car a) #t)
(loop (cdr a) #f))]