mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-03 19:26:36 +02:00
Default conf parent is #f, not null.
This commit is contained in:
parent
724390d596
commit
94615fb11e
1 changed files with 1 additions and 1 deletions
|
@ -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)))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue