summaryrefslogtreecommitdiff
path: root/lisp/calendar/solar.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2020-08-12 11:29:51 +0100
committerGlenn Morris <rgm@gnu.org>2020-08-12 11:30:16 +0100
commit433d8184970bd2d569744155d58cde2cd4807a0a (patch)
treeab61991cb8c49d8ab6af4f05df8733d31a590fdd /lisp/calendar/solar.el
parentdca8b4ac5853767a1deb1947e72d038b4f4bb068 (diff)
downloademacs-433d8184970bd2d569744155d58cde2cd4807a0a.tar.gz
Tweak recent solar.el change
* lisp/calendar/solar.el (sunrise-sunset, solar-equinoxes-solstices): Use +0000 for "numeric" UTC, not +0100.
Diffstat (limited to 'lisp/calendar/solar.el')
-rw-r--r--lisp/calendar/solar.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/solar.el b/lisp/calendar/solar.el
index 85c3c481d39..05bb3164e12 100644
--- a/lisp/calendar/solar.el
+++ b/lisp/calendar/solar.el
@@ -841,7 +841,7 @@ This function is suitable for execution in an init file."
(if (< arg 16) calendar-standard-time-zone-name
(cond ((zerop calendar-time-zone)
(if (eq calendar-time-zone-style 'numeric)
- "+0100" "UTC"))
+ "+0000" "UTC"))
((< calendar-time-zone 0)
(format "UTC%dmin" calendar-time-zone))
(t (format "UTC+%dmin" calendar-time-zone)))))
@@ -1016,7 +1016,7 @@ Requires floating point."
(calendar-standard-time-zone-name
(cond
(calendar-time-zone calendar-standard-time-zone-name)
- ((eq calendar-time-zone-style 'numeric) "+0100")
+ ((eq calendar-time-zone-style 'numeric) "+0000")
(t "UTC")))
(calendar-daylight-savings-starts
(if calendar-time-zone calendar-daylight-savings-starts))