From 033759c208cfae3d11851d6874fc83e7d1866c84 Mon Sep 17 00:00:00 2001 From: Kuang-che Wu Date: Thu, 10 Oct 2024 11:49:12 +0800 Subject: also follow precision from balance assignment Fixes #2129 --- src/textual.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/textual.cc b/src/textual.cc index 4105a42d..4ae64890 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -1658,7 +1658,7 @@ post_t * instance_t::parse_post(char * line, ptristream stream(p, static_cast(len - beg)); if (*p != '(') // indicates a value expression - post->assigned_amount->parse(stream, PARSE_NO_MIGRATE); + post->assigned_amount->parse(stream); else parse_amount_expr(stream, *context.scope, *post.get(), *post->assigned_amount, -- cgit v1.2.3