diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-23 19:07:30 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-23 19:07:30 -0400 |
commit | 944c63e6f26d1f05ba6f63c60f510d3796872f3e (patch) | |
tree | e1fc54319c2c42c16a64e95930acaca063658863 /src/format.cc | |
parent | 057506ab6dddbfb75d1bb29289602f375ca57df5 (diff) | |
download | fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.gz fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.bz2 fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.zip |
The Great Renaming, Part II
The last commit did not contain the majority of changes because of a
slight mishap. This contains the real changeset.
Diffstat (limited to 'src/format.cc')
-rw-r--r-- | src/format.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/format.cc b/src/format.cc index 5b813ee6..b4541a59 100644 --- a/src/format.cc +++ b/src/format.cc @@ -73,12 +73,12 @@ format_t::element_t * format_t::parse_elements(const string& fmt) // d: COMPLETE_DATE_STRING // D: DATE_STRING // S: SOURCE; break - // B: ENTRY_BEG_POS - // b: ENTRY_BEG_LINE - // E: ENTRY_END_POS - // e: ENTRY_END_LINE + // B: XACT_BEG_POS + // b: XACT_BEG_LINE + // E: XACT_END_POS + // e: XACT_END_LINE // X: CLEARED - // Y: ENTRY_CLEARED + // Y: XACT_CLEARED // C: CODE // P: PAYEE // W: OPT_ACCOUNT @@ -91,10 +91,10 @@ format_t::element_t * format_t::parse_elements(const string& fmt) // n: OPT_NOTE // _: DEPTH_SPACER // - // xB: XACT_BEG_POS - // xb: XACT_BEG_LINE - // xE: XACT_END_POS - // xe: XACT_END_LINE + // xB: POST_BEG_POS + // xb: POST_BEG_LINE + // xE: POST_END_POS + // xe: POST_END_LINE for (const char * p = fmt.c_str(); *p; p++) { if (*p != '%' && *p != '\\') { |