diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-01 18:32:27 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-01 18:33:13 -0400 |
commit | 5cdd36f358dcafddd29e7a6c5e0d8210b65bfd79 (patch) | |
tree | 19a51d0df2e3b67e0db2a1fc11eccde5da398883 /src/textual.cc | |
parent | 038c24357e85b3b33460f3b8d41b1ef4ab0ed901 (diff) | |
download | ledger-5cdd36f358dcafddd29e7a6c5e0d8210b65bfd79.tar.gz ledger-5cdd36f358dcafddd29e7a6c5e0d8210b65bfd79.tar.bz2 ledger-5cdd36f358dcafddd29e7a6c5e0d8210b65bfd79.zip |
Further improved parsing of query expressions
Fixes #210 / D4C2DD6F-8967-4FFC-BBBC-A941F9C53475
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textual.cc b/src/textual.cc index 2b204df0..9a49edd4 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -526,7 +526,7 @@ void instance_t::automated_xact_directive(char * line) std::auto_ptr<auto_xact_t> ae (new auto_xact_t(query_t(string(skip_ws(line + 1)), - keep_details_t(true, true, true)))); + keep_details_t(true, true, true), false))); ae->pos = position_t(); ae->pos->pathname = pathname; ae->pos->beg_pos = line_beg_pos; |