Fixed rendering of non-dotted pairs in defform
This commit is contained in:
parent
93748ccc7b
commit
45e1d7e4f0
|
@ -95,13 +95,14 @@
|
|||
(if (and (identifier? spec)
|
||||
(free-identifier=? spec #'defined-id))
|
||||
(datum->syntax #'here '(unsyntax x) spec spec)
|
||||
(syntax-case spec ()
|
||||
[(a . b)
|
||||
(datum->syntax spec
|
||||
(cons (loop #'a) (loop #'b))
|
||||
(cond
|
||||
[(syntax? spec) (datum->syntax spec
|
||||
(loop (syntax-e spec))
|
||||
spec
|
||||
spec)]
|
||||
[_ spec]))))])
|
||||
[(pair? spec) (cons (loop (car spec))
|
||||
(loop (cdr spec)))]
|
||||
[else spec]))))])
|
||||
#'(with-togetherable-racket-variables
|
||||
(l.lit ...)
|
||||
([form [defined-id spec]] [form [defined-id spec1]] ...
|
||||
|
|
Loading…
Reference in New Issue
Block a user