diff options
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/textual.cc b/src/textual.cc index a804fb1c..b3294d99 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -954,6 +954,8 @@ post_t * instance_t::parse_post(char * line, if (post->cost->sign() < 0) throw parse_error(_("A posting's cost may not be negative")); + post->cost->in_place_unround(); + if (per_unit) *post->cost *= post->amount; |