Fix a small but nasty bug, and the related problem in stubs.
original commit: 054ce9d21cf9928153f42c372574694226ccc212
This commit is contained in:
parent
39ccb05def
commit
ef73afe8aa
|
@ -63,7 +63,8 @@
|
|||
(let loop ([r (car root+url)] [p path])
|
||||
(if (null? r)
|
||||
`(,(cdr root+url) ,@p ,file*)
|
||||
(and (pair? p) (loop (cdr r) (cdr p))))))
|
||||
(and (pair? p) (equal? (car p) (car r))
|
||||
(loop (cdr r) (cdr p))))))
|
||||
roots))
|
||||
(define result
|
||||
(let loop ([t tgtdir] [c curdir] [pfx '()])
|
||||
|
|
Loading…
Reference in New Issue
Block a user