fixed the require bug
svn: r16308
This commit is contained in:
parent
339860d340
commit
c24b05a7b0
|
@ -39,7 +39,7 @@
|
||||||
(define (clauses-use-kwd stx:list ->rec? legal-clause kwd-in?)
|
(define (clauses-use-kwd stx:list ->rec? legal-clause kwd-in?)
|
||||||
(map (lambda (stx)
|
(map (lambda (stx)
|
||||||
(syntax-case stx ()
|
(syntax-case stx ()
|
||||||
[(kw . E) (kwd-in? #'kw) (begin (->rec? #'kw) (cons #'kw stx))]
|
[(kw . E) (kwd-in? #'kw) (begin (->rec? #'kw #'E) (cons #'kw stx))]
|
||||||
[_ (raise-syntax-error #f legal-clause stx)]))
|
[_ (raise-syntax-error #f legal-clause stx)]))
|
||||||
stx:list))
|
stx:list))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user