branch: externals/ebdb commit 044b0222dcdb40afde6b295e50254956e315c15d Author: Eric Abrahamsen <e...@ericabrahamsen.net> Commit: Eric Abrahamsen <e...@ericabrahamsen.net>
Remove the Universal Time flag for timestamp output With thanks to Dieter Faulbaum for all the reports and suggestions. * ebdb.el (ebdb-string): There's no reason to force this, users should see the timestamps in their local zone. --- ebdb.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebdb.el b/ebdb.el index 25ddb64..f97af1e 100644 --- a/ebdb.el +++ b/ebdb.el @@ -2163,7 +2163,7 @@ If optional arg REPLACE is non-nil, replace any existing notes.") (setf (slot-value ts slot) (current-time))) (cl-defmethod ebdb-string ((field ebdb-field-timestamp)) - (format-time-string ebdb-time-format (slot-value field 'timestamp) t)) + (format-time-string ebdb-time-format (slot-value field 'timestamp))) ;;; Creation date field