aboutsummaryrefslogtreecommitdiff
path: root/sx-time.el
diff options
context:
space:
mode:
Diffstat (limited to 'sx-time.el')
-rw-r--r--sx-time.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/sx-time.el b/sx-time.el
index 3de124d..9fa0037 100644
--- a/sx-time.el
+++ b/sx-time.el
@@ -1,4 +1,4 @@
-;;; sx-time.el --- time
+;;; sx-time.el --- time -*- lexical-binding: t; -*-
;; Copyright (C) 2014 Sean Allred
@@ -19,13 +19,14 @@
;;; Commentary:
-;;
+;; This file provides functions for manipulating and displaying
+;; timestamps.
;;; Code:
(require 'time-date)
-(defvar sx-time-seconds-to-string
+(defconst sx-time-seconds-to-string
;; (LIMIT NAME VALUE)
;; We use an entry if the number of seconds in question is less than
;; LIMIT, but more than the previous entry's LIMIT.
@@ -77,3 +78,7 @@ See also `sx-time-date-format-year'."
(provide 'sx-time)
;;; sx-time.el ends here
+
+;; Local Variables:
+;; indent-tabs-mode: nil
+;; End: