[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.
This commit is contained in:
Christopher Lam 2020-04-04 21:48:58 +08:00
parent 96980193bf
commit d596056786

View File

@ -70,7 +70,7 @@
(string-append "<span class=\"foreign\">" item "</span>"))
;; 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)))