summaryrefslogtreecommitdiff
path: root/emacs.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-07-29 20:10:03 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-07-29 20:10:03 -0400
commitea27d1b45a5ff975a1e90e3e9f4b74ff8d34056e (patch)
tree492a147199ad921959f86e8f0b4ec4edc1eeed46 /emacs.cc
parent200d919fe7c8bcf021011c16fb6ec50821444d5e (diff)
downloadledger-ea27d1b45a5ff975a1e90e3e9f4b74ff8d34056e.tar.gz
ledger-ea27d1b45a5ff975a1e90e3e9f4b74ff8d34056e.tar.bz2
ledger-ea27d1b45a5ff975a1e90e3e9f4b74ff8d34056e.zip
Moved around and renamed a very large amount of code in order to rationalize
the way that value expressions extract information from journal objects.
Diffstat (limited to 'emacs.cc')
-rw-r--r--emacs.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/emacs.cc b/emacs.cc
index 44b372fe..a398b9c4 100644
--- a/emacs.cc
+++ b/emacs.cc
@@ -2,7 +2,7 @@
namespace ledger {
-void format_emacs_transactions::write_entry(entry_t& entry)
+void format_emacs_xacts::write_entry(entry_t& entry)
{
int idx = entry.src_idx;
for (paths_list::const_iterator i = entry.journal->sources.begin();
@@ -33,10 +33,10 @@ void format_emacs_transactions::write_entry(entry_t& entry)
out << "\n";
}
-void format_emacs_transactions::operator()(transaction_t& xact)
+void format_emacs_xacts::operator()(xact_t& xact)
{
- if (! transaction_has_xdata(xact) ||
- ! (transaction_xdata_(xact).dflags & TRANSACTION_DISPLAYED)) {
+ if (! xact_has_xdata(xact) ||
+ ! (xact_xdata_(xact).dflags & XACT_DISPLAYED)) {
if (! last_entry) {
out << "((";
write_entry(*xact.entry);
@@ -54,10 +54,10 @@ void format_emacs_transactions::operator()(transaction_t& xact)
<< xact.amount << "\"";
switch (xact.state) {
- case transaction_t::CLEARED:
+ case xact_t::CLEARED:
out << " t";
break;
- case transaction_t::PENDING:
+ case xact_t::PENDING:
out << " pending";
break;
default:
@@ -73,7 +73,7 @@ void format_emacs_transactions::operator()(transaction_t& xact)
last_entry = xact.entry;
- transaction_xdata(xact).dflags |= TRANSACTION_DISPLAYED;
+ xact_xdata(xact).dflags |= XACT_DISPLAYED;
}
}