branch: externals/hyperbole
commit 75205165a69aebdcd8dd64634d1ef15f08ba318e
Merge: 0ed7d26 d885051
Author: Robert Weiner <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #14 from matsl/account-for-current-time-zone
Account for current-time-zone returning offset in seconds
---
htz.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/htz.el b/htz.el
index 598e399..48a1ff8 100644
--- a/htz.el
+++ b/htz.el
@@ -336,7 +336,7 @@ Optional argument TIMEZONE specifies a time zone."
htz:world-timezones))
(and (fboundp 'current-time-zone)
(if (listp (current-time-zone))
- (car (current-time-zone))
+ (/ (car (current-time-zone)) 36)
(current-time-zone)))
timezone))
(if (stringp timezone)