TR: (minor change) eq? -> eqv?

According to the guide, eqv? better than eq? for chars
This commit is contained in:
Christopher Lam 2018-02-19 23:31:46 +08:00
parent 578e9860d0
commit 03e862ec47

View File

@ -987,7 +987,7 @@ tags within description, notes or memo. ")
(lambda (split transaction-row?)
(gnc:make-html-table-cell/markup
"date-cell"
(if (eq? (xaccSplitGetReconcile split) #\y)
(if (eqv? (xaccSplitGetReconcile split) #\y)
(qof-print-date (xaccSplitGetDateReconciled split))
"")))))