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:
parent
8baf45e435
commit
7be7c29080
|
@ -177,7 +177,8 @@
|
||||||
[rest (let loop ([a (cdr (syntax-e stx))] [head? #f])
|
[rest (let loop ([a (cdr (syntax-e stx))] [head? #f])
|
||||||
(cond
|
(cond
|
||||||
[(identifier? a) (datum->syntax #f (syntax-e a) a a)]
|
[(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]
|
a]
|
||||||
[(pair? a) (cons (loop (car a) #t)
|
[(pair? a) (cons (loop (car a) #t)
|
||||||
(loop (cdr a) #f))]
|
(loop (cdr a) #f))]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user