summaryrefslogtreecommitdiff
path: root/textual.cc
diff options
context:
space:
mode:
Diffstat (limited to 'textual.cc')
-rw-r--r--textual.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/textual.cc b/textual.cc
index 783cc5de..33b7971b 100644
--- a/textual.cc
+++ b/textual.cc
@@ -134,6 +134,10 @@ transaction_t * parse_transaction(char * line, account_t * account)
}
}
+ char * q = p + std::strlen(p) - 1;
+ while (q >= p && std::isspace(*q))
+ *q-- = '\0';
+
if (*p == '[' || *p == '(') {
xact->flags |= TRANSACTION_VIRTUAL;
if (*p == '[')