resolve paths in pathlist-closure

svn: r3171
This commit is contained in:
Eli Barzilay 2006-06-01 14:10:55 +00:00
parent 5c11b23cae
commit e82c0f6bf8

View File

@ -500,7 +500,8 @@
path))))
(define (pathlist-closure paths)
(let loop ([paths (map (lambda (p) (simplify-path p #f)) paths)]
(let loop ([paths (map (lambda (p) (simplify-path (resolve-path p) #f))
paths)]
[r '()])
(if (null? paths)
(reverse! r)