summaryrefslogtreecommitdiff
path: root/src/emacs.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-31 04:50:07 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-31 04:50:07 -0400
commit3909d2678ede154f9a7fe19617973d4daa173c47 (patch)
treeb8d85010bae44f1f4c7020d68e8b840b81da354f /src/emacs.cc
parent97a9b42b2c5ef908e0c47ecfd39771a79f8fa8a2 (diff)
downloadfork-ledger-3909d2678ede154f9a7fe19617973d4daa173c47.tar.gz
fork-ledger-3909d2678ede154f9a7fe19617973d4daa173c47.tar.bz2
fork-ledger-3909d2678ede154f9a7fe19617973d4daa173c47.zip
Removed most #if 0 blocks and callout comments
Diffstat (limited to 'src/emacs.cc')
-rw-r--r--src/emacs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs.cc b/src/emacs.cc
index 1d3f28a3..dc1a18ae 100644
--- a/src/emacs.cc
+++ b/src/emacs.cc
@@ -44,7 +44,7 @@ void format_emacs_posts::write_xact(xact_t& xact)
<< xact.pos->beg_line << " ";
tm when = gregorian::to_tm(xact.date());
- std::time_t date = std::mktime(&when); // jww (2008-04-20): Is this GMT or local?
+ std::time_t date = std::mktime(&when);
out << "(" << (date / 65536) << " " << (date % 65536) << " 0) ";