mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Replace bitwise-ior with + because the former is not available on all systems.
See bug #347274 for discussion of this. BP git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17684 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
01535b8bdd
commit
d1f8fee5ee
@ -165,7 +165,7 @@
|
||||
;; difference (budget to actual)
|
||||
(dif-numeric-val (gnc-numeric-sub bgt-numeric-val
|
||||
act-numeric-val GNC-DENOM-AUTO
|
||||
(bitwise-ior GNC-DENOM-LCD GNC-RND-NEVER)))
|
||||
(+ GNC-DENOM-LCD GNC-RND-NEVER)))
|
||||
(dif-val (if bgt-unset? "."
|
||||
(gnc:make-gnc-monetary comm dif-numeric-val)))
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user