From 0850e004e2ec55b526810d3d391656efbc4e9916 Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Tue, 6 Nov 2018 07:23:08 +0800 Subject: [PATCH] [welcome-to-gnucash] update (format), use #f for destination Old format calls without destination would trigger a guile-deprecated warning. Simple amendment. --- gnucash/report/utility-reports/welcome-to-gnucash.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gnucash/report/utility-reports/welcome-to-gnucash.scm b/gnucash/report/utility-reports/welcome-to-gnucash.scm index c75b4c7339..79b8d5a150 100644 --- a/gnucash/report/utility-reports/welcome-to-gnucash.scm +++ b/gnucash/report/utility-reports/welcome-to-gnucash.scm @@ -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