diff options
Diffstat (limited to 'src/emacs.cc')
-rw-r--r-- | src/emacs.cc | 2 |
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) "; |