diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-11 16:03:50 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-11 17:02:25 -0400 |
commit | dea2aed0b509734ec4e1cd163ac2a4f013000da2 (patch) | |
tree | 7908da76c67ae5172882306a319bf26df81b73b4 /src/emacs.cc | |
parent | d580079df892c30d023b3211d6c4611c17b11f8f (diff) | |
download | fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.gz fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.bz2 fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.zip |
Untabified all source files
Diffstat (limited to 'src/emacs.cc')
-rw-r--r-- | src/emacs.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emacs.cc b/src/emacs.cc index 3c8bb256..7abdfd7f 100644 --- a/src/emacs.cc +++ b/src/emacs.cc @@ -42,11 +42,11 @@ void format_emacs_posts::write_xact(xact_t& xact) { if (xact.pos) out << "\"" << xact.pos->pathname << "\" " - << xact.pos->beg_line << " "; + << xact.pos->beg_line << " "; else out << "\"\" " << -1 << " "; - tm when = gregorian::to_tm(xact.date()); + tm when = gregorian::to_tm(xact.date()); std::time_t date = std::mktime(&when); out << "(" << (date / 65536) << " " << (date % 65536) << " 0) "; @@ -86,7 +86,7 @@ void format_emacs_posts::operator()(post_t& post) out << " (" << -1 << " "; out << "\"" << post.reported_account()->fullname() << "\" \"" - << post.amount << "\""; + << post.amount << "\""; switch (post.state()) { case item_t::CLEARED: |