Default conf parent is #f, not null.

This commit is contained in:
Alex Shinn 2013-09-22 18:55:21 +09:00
parent 724390d596
commit 94615fb11e

View file

@ -129,7 +129,7 @@
(define (conf-load file . o) (define (conf-load file . o)
(make-conf (make-conf
(read-from-file file '()) (read-from-file file '())
(if (pair? o) (car o) '()) (and (pair? o) (car o))
file file
(current-second))) (current-second)))