Remove two unnecessary instances of quasisyntax
This commit is contained in:
parent
2649cadc43
commit
146a68731f
1 changed files with 2 additions and 2 deletions
|
@ -141,7 +141,7 @@
|
||||||
(syntax-case stx ()
|
(syntax-case stx ()
|
||||||
((_ request (binding ...) body ...)
|
((_ request (binding ...) body ...)
|
||||||
(with-syntax (((binding ...) (map make-binding #'(binding ...))))
|
(with-syntax (((binding ...) (map make-binding #'(binding ...))))
|
||||||
#`(let ((request-var request))
|
#'(let ((request-var request))
|
||||||
(let (binding ...)
|
(let (binding ...)
|
||||||
body ...)))))))
|
body ...)))))))
|
||||||
|
|
||||||
|
@ -187,7 +187,7 @@
|
||||||
(syntax-case stx ()
|
(syntax-case stx ()
|
||||||
((_ path clause ...)
|
((_ path clause ...)
|
||||||
(with-syntax (((cond-clause ...) (map process-clause #'(clause ...))))
|
(with-syntax (((cond-clause ...) (map process-clause #'(clause ...))))
|
||||||
#`(let ((path-var path))
|
#'(let ((path-var path))
|
||||||
(cond cond-clause ...)))))))
|
(cond cond-clause ...)))))))
|
||||||
|
|
||||||
(define (rcons*-fold request . keys-and-procs)
|
(define (rcons*-fold request . keys-and-procs)
|
||||||
|
|
Loading…
Reference in a new issue