Fixing bug in conf-get-multi.

This commit is contained in:
Alex Shinn 2015-02-11 16:35:09 +09:00
parent 64b4d7b2fe
commit 6319d11291

View file

@ -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.