From d5960567866bbf7ab7085056ca60293e3aff5831 Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Sat, 4 Apr 2020 21:48:58 +0800 Subject: [PATCH] [eguile] escape-html -> gnc:html-string-sanitize forgot to substitute function which was removed in a previous commit 32692721. this shouldn't matter because debugging? is #f in production. --- gnucash/report/report-system/eguile-html-utilities.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnucash/report/report-system/eguile-html-utilities.scm b/gnucash/report/report-system/eguile-html-utilities.scm index 7ff8a94d67..d079b4a760 100644 --- a/gnucash/report/report-system/eguile-html-utilities.scm +++ b/gnucash/report/report-system/eguile-html-utilities.scm @@ -70,7 +70,7 @@ (string-append "" item "")) ;; Convert any x into something printable as HTML -(define-public (dump x) (escape-html (object->string x))) +(define-public (dump x) (gnc:html-string-sanitize (object->string x))) ; ddump does the display as well -- for use in eguile reports ; where anything 'display'ed becomes part of the report (define-public (ddump x) (display (dump x)))