mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
[report-utilities] gnc:strify can render vectors too
This commit is contained in:
parent
aa451bc89d
commit
9adf8db1a2
@ -1260,6 +1260,10 @@ flawed. see report-utilities.scm. please update reports.")
|
||||
"(list "
|
||||
(string-join (map gnc:strify d) " ")
|
||||
")"))
|
||||
(and (vector? d) (string-append
|
||||
"(vector "
|
||||
(string-join (map gnc:strify (vector->list d)) " ")
|
||||
")"))
|
||||
(and (pair? d) (format #f "(~a . ~a)"
|
||||
(gnc:strify (car d))
|
||||
(if (eq? (car d) 'absolute)
|
||||
|
Loading…
Reference in New Issue
Block a user