summaryrefslogtreecommitdiff
path: root/parse.cc
diff options
context:
space:
mode:
Diffstat (limited to 'parse.cc')
-rw-r--r--parse.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/parse.cc b/parse.cc
index 579bc432..90369a1e 100644
--- a/parse.cc
+++ b/parse.cc
@@ -78,6 +78,9 @@ bool parse_ledger(std::istream& in)
if (in.eof()) {
break;
}
+ else if (line[0] == '\n') {
+ continue;
+ }
else if (std::isdigit(line[0])) {
static char buf[256];
int ovector[60];