summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-04-11 00:32:08 -0400
committerKyle Meyer <kyle@kyleam.com>2016-04-11 00:32:08 -0400
commitacfd4111939e44ad660316c4fda4d0f38364912f (patch)
treeeb2e992db266d10d1998bb5408badb5dc0cbabb3
parentd522fc88530b0c349b612688459d4558e92ca1d2 (diff)
downloadorg-mode-acfd4111939e44ad660316c4fda4d0f38364912f.tar.gz
Update format-time-string calls for argument change
* lisp/org.el (org-timestamp-format): * lisp/ox-icalendar.el (org-icalendar-convert-timestamp): Specify t for the ZONE argument of format-time-string to indicate UTC. As of Emacs's af32fa9 (New optional ZONE arg for format-time-string etc., 2015-07-26), UTC is indicated by passing t as the third argument to format-time-string rather than any non-nil value. This change is in place of a backport of Emacs's b787d55 (More format-time-string change fixups, 2016-04-02), which would not work for earlier versions of Emacs.
-rw-r--r--lisp/org.el3
-rw-r--r--lisp/ox-icalendar.el3
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 3df694e..4de5ca0 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -23813,7 +23813,8 @@ time-range, if possible.
When optional argument UTC is non-nil, time will be expressed as
Universal Time."
(format-time-string
- format (org-timestamp--to-internal-time timestamp end) utc))
+ format (org-timestamp--to-internal-time timestamp end)
+ (and utc t)))
(defun org-timestamp-split-range (timestamp &optional end)
"Extract a TIMESTAMP object from a date or time range.
diff --git a/lisp/ox-icalendar.el b/lisp/ox-icalendar.el
index f965ddc..11fc587 100644
--- a/lisp/ox-icalendar.el
+++ b/lisp/ox-icalendar.el
@@ -396,7 +396,8 @@ Universal Time, ignoring `org-icalendar-date-time-format'."
;; Convert timestamp into internal time in order to use
;; `format-time-string' and fix any mistake (i.e. MI >= 60).
(encode-time 0 mi h d m y)
- (or utc (and with-time-p (org-icalendar-use-UTC-date-time-p)))))))
+ (and (or utc (and with-time-p (org-icalendar-use-UTC-date-time-p)))
+ t)))))
(defun org-icalendar-dtstamp ()
"Return DTSTAMP property, as a string."