summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/calendar/cal-dst.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/calendar/cal-dst.el b/lisp/calendar/cal-dst.el
index 25b4d68f750..b2bc8c36d3a 100644
--- a/lisp/calendar/cal-dst.el
+++ b/lisp/calendar/cal-dst.el
@@ -143,8 +143,8 @@ midnight UTC on absolute date ABS-DATE."
"Return the time of the next time zone transition after TIME.
Both TIME and the result are acceptable arguments to `current-time-zone'.
Return nil if no such transition can be found."
- (let* ((base 65536) ;; 2^16 = base of current-time output
- (quarter-multiple 120) ;; approx = (seconds per quarter year) / base
+ (let* ((base 65536) ; 2^16 = base of current-time output
+ (quarter-multiple 120) ; approx = (seconds per quarter year) / base
(time-zone (current-time-zone time))
(time-utc-diff (car time-zone))
hi
@@ -221,7 +221,7 @@ The result has the proper form for `calendar-daylight-savings-starts'."
'((calendar-gregorian-from-absolute
(calendar-absolute-from-persian
(list 7 1 (- year 621))))))))
- (prevday-sec (- -1 utc-diff)) ;; last sec of previous local day
+ (prevday-sec (- -1 utc-diff)) ; last sec of previous local day
(year (1+ y)))
;; Scan through the next few years until only one rule remains.
(while (let ((rules candidate-rules)