aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/calendar
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1993-03-18 21:39:28 +0000
committerJim Blandy <[email protected]>1993-03-18 21:39:28 +0000
commit0267e275bc879ec20cc1a0765a08848a5bf8ac40 (patch)
tree6a1002a6232aa329dcac23689048745fc99dd6bc /lisp/calendar
parente9571d2a21b7fd2dc46549382bea5ed4c00ddb07 (diff)
* solar.el (solar-time-string): Round the time properly.
Diffstat (limited to 'lisp/calendar')
-rw-r--r--lisp/calendar/solar.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/calendar/solar.el b/lisp/calendar/solar.el
index 84b9dfe6ff..041dda5c88 100644
--- a/lisp/calendar/solar.el
+++ b/lisp/calendar/solar.el
@@ -244,11 +244,14 @@ savings time according to `calendar-daylight-savings-starts' and
calendar-daylight-time-zone-name
calendar-standard-time-zone-name))
(24-hours (truncate time))
+ (minutes (round (* 60 (- time 24-hours))))
+ (24-hours (if (= minutes 60) (1+ 24-hours) 24-hours))
+ (minutes (if (= minutes 60) 0 minutes))
+ (minutes (format "%02d" minutes))
(12-hours (format "%d" (if (> 24-hours 12)
(- 24-hours 12)
(if (= 24-hours 0) 12 24-hours))))
(am-pm (if (>= 24-hours 12) "pm" "am"))
- (minutes (format "%02d" (round (* 60 (- time 24-hours)))))
(24-hours (format "%02d" 24-hours)))
(mapconcat 'eval calendar-time-display-form "")))