correctly apply map to its argument due to an early ). Fixes PR 13047
This commit is contained in:
parent
e705d4d450
commit
6dae03f283
|
@ -499,8 +499,8 @@
|
||||||
"(apply"
|
"(apply"
|
||||||
" string-append"
|
" string-append"
|
||||||
"(map(lambda(p)"
|
"(map(lambda(p)"
|
||||||
" (format \"\\n ~a\" (unbox p))))"
|
" (format \"\\n ~a\" (unbox p)))"
|
||||||
"(filter box? all-paths)))"
|
"(filter box? all-paths))))"
|
||||||
" \"\")))))"
|
" \"\")))))"
|
||||||
"(let((dir(*build-path-rep(car paths) collection)))"
|
"(let((dir(*build-path-rep(car paths) collection)))"
|
||||||
"(if(*directory-exists?(car paths) dir)"
|
"(if(*directory-exists?(car paths) dir)"
|
||||||
|
|
|
@ -582,8 +582,8 @@
|
||||||
(apply
|
(apply
|
||||||
string-append
|
string-append
|
||||||
(map (lambda (p)
|
(map (lambda (p)
|
||||||
(format "\n ~a" (unbox p))))
|
(format "\n ~a" (unbox p)))
|
||||||
(filter box? all-paths)))
|
(filter box? all-paths))))
|
||||||
"")))))
|
"")))))
|
||||||
(let ([dir (*build-path-rep (car paths) collection)])
|
(let ([dir (*build-path-rep (car paths) collection)])
|
||||||
(if (*directory-exists? (car paths) dir)
|
(if (*directory-exists? (car paths) dir)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user