diff options
author | John Wiegley <johnw@newartisans.com> | 2012-02-28 02:47:22 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-02-28 02:47:22 -0600 |
commit | 7a55c7ffc1e3565c82c746ea66dbb6af2e3d8509 (patch) | |
tree | cba2d3971f66ada7e4bcbbce975b0256aa2ac2f3 /src/textual.cc | |
parent | 6adfcc8469e3d526f4bcb0971b49efb490ad6401 (diff) | |
download | fork-ledger-7a55c7ffc1e3565c82c746ea66dbb6af2e3d8509.tar.gz fork-ledger-7a55c7ffc1e3565c82c746ea66dbb6af2e3d8509.tar.bz2 fork-ledger-7a55c7ffc1e3565c82c746ea66dbb6af2e3d8509.zip |
Allow xact notes on periodic transactions
Fixes #448
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/textual.cc b/src/textual.cc index f6cbf070..739b63f0 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -1565,9 +1565,12 @@ bool instance_t::parse_posts(account_t * account, std::streamsize len = read_line(line); assert(len > 0); - if (post_t * post = parse_post(line, len, account, NULL, defer_expr)) { - xact.add_post(post); - added = true; + char * p = skip_ws(line); + if (*p != ';') { + if (post_t * post = parse_post(line, len, account, NULL, defer_expr)) { + xact.add_post(post); + added = true; + } } } |