fix default value of #:blueboxes-dirs

This commit is contained in:
Robby Findler 2015-04-13 12:17:55 -05:00
parent f7672c6186
commit 17a317fe3d

View File

@ -12,7 +12,14 @@
[blueboxes-cache? (-> any/c boolean?)]))
(struct blueboxes-cache (info-or-paths) #:mutable)
(define (make-blueboxes-cache populate? #:blueboxes-dirs [blueboxes-dirs (get-doc-search-dirs)])
(define (make-blueboxes-cache
populate?
#:blueboxes-dirs
[blueboxes-dirs (for*/list ([d (in-list (get-doc-search-dirs))]
[c (in-list (if (directory-exists? d)
(directory-list d)
'()))])
(build-path d c))])
(define cache (blueboxes-cache blueboxes-dirs))
(when populate? (populate-cache! cache))
cache)