Fix problem with "t" unbound in cond expression. Use "else" instead.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19390 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Phil Longstaff 2010-08-02 19:54:26 +00:00
parent 0f9e5ae921
commit 01e3ed7b31

View File

@ -369,7 +369,7 @@
((list? col-info)
(gnc:html-table-add-budget-line-columns!
html-table rownum budget acct col-info))
(t
(else
(gnc:html-table-add-budget-line-columns!
html-table rownum budget acct (list col-info)))
)
@ -419,7 +419,7 @@
(gnc:html-table-set-cell!
html-table 0 current-col "Multiple periods")
)
(t
(else
(let* ((date (gnc-budget-get-period-start-date budget col-info)))
(gnc:html-table-set-cell!
html-table 0 current-col (gnc-print-date date))