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:
@@ -1260,6 +1260,10 @@ flawed. see report-utilities.scm. please update reports.")
|
|||||||
"(list "
|
"(list "
|
||||||
(string-join (map gnc:strify d) " ")
|
(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)"
|
(and (pair? d) (format #f "(~a . ~a)"
|
||||||
(gnc:strify (car d))
|
(gnc:strify (car d))
|
||||||
(if (eq? (car d) 'absolute)
|
(if (eq? (car d) 'absolute)
|
||||||
|
|||||||
Reference in New Issue
Block a user