*** empty log message ***

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2141 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2000-03-30 23:29:51 +00:00
parent 53b1e83885
commit 75e96e2ee8

View File

@ -20,15 +20,17 @@
(gnc:depend "report.scm")
(gnc:depend "report/report-list.scm")
(gnc:config-var-value-set! gnc:*load-path* #f
(cons (string-append gnc:_share-dir-default_
"/scm/qif-import")
(gnc:config-var-value-get gnc:*load-path*)))
(gnc:config-var-value-set! gnc:*load-path* #f
(cons (string-append gnc:_share-dir-default_
"/scm/printing")
(gnc:config-var-value-get gnc:*load-path*)))
(gnc:config-var-value-set!
gnc:*load-path* #f
(let loop ((load-path (gnc:config-var-value-get gnc:*load-path*)))
(if (null? load-path) '()
(cons
(string-append (car load-path) "/printing")
(cons
(string-append (car load-path) "/qif-import")
(cons
(car load-path)
(loop (cdr load-path))))))))
(gnc:depend "qif-import.scm")
(gnc:depend "print-check.scm")