svn: r11519
This commit is contained in:
Eli Barzilay 2008-09-02 08:09:52 +00:00
parent b0f32780ce
commit db81f6afa1

View File

@ -16,7 +16,7 @@
(let loop ([body (syntax->list #'(body ...))])
(if (not (and (pair? body)
(pair? (cdr body))
(not (keyword? (car body)))))
(keyword? (syntax-e (car body)))))
(datum->syntax stx body stx)
(let* ([k (car body)] [k* (syntax-e k)] [v (cadr body)])
(cond