mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-03 19:26:36 +02:00
Fixing bug in conf-get-multi.
This commit is contained in:
parent
64b4d7b2fe
commit
6319d11291
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@
|
||||||
(define (conf-get-multi config key)
|
(define (conf-get-multi config key)
|
||||||
(if (not config)
|
(if (not config)
|
||||||
'()
|
'()
|
||||||
(append (conf-get-list (conf-head config))
|
(append (conf-get-list (conf-head config) key)
|
||||||
(conf-get-multi (conf-parent config) key))))
|
(conf-get-multi (conf-parent config) key))))
|
||||||
|
|
||||||
;;> Extends the config with anadditional alist.
|
;;> Extends the config with anadditional alist.
|
||||||
|
|
Loading…
Add table
Reference in a new issue