[welcome-to-gnucash] update (format), use #f for destination

Old format calls without destination would trigger a guile-deprecated
warning. Simple amendment.
pull/444/head
Christopher Lam 8 years ago committed by John Ralls
parent 01a0bc2bb2
commit 0850e004e2

@ -91,9 +91,12 @@
(gnc:html-document-add-object!
doc
(gnc:make-html-text
(gnc:html-markup-h2 (format (_ "Welcome to GnuCash ~a !") gnc:version))
(gnc:html-markup-p (format
(_ "GnuCash ~a has lots of nice features. Here are a few.") gnc:version))))
(gnc:html-markup-h2
(format #f (_ "Welcome to GnuCash ~a !")
gnc:version))
(gnc:html-markup-p
(format #f (_ "GnuCash ~a has lots of nice features. Here are a few.")
gnc:version))))
doc))
(gnc:define-report

Loading…
Cancel
Save