summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2018-02-01 22:42:35 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-02-01 22:42:35 +0100
commite570e964a30bb8e719460ef27d919f8d3ab53104 (patch)
treeb51fa0685b36924d592a03b7e0153bdd2d4b5e8a
parent0790855c93533ce988f5b28839fdf0eca7521ad3 (diff)
downloadorg-mode-e570e964a30bb8e719460ef27d919f8d3ab53104.tar.gz
org-compat: Remove `org-decode-time'
* lisp/org-compat.el (org-decode-time): Remove compatibility function, no longer used.
-rw-r--r--lisp/org-compat.el6
1 files changed, 0 insertions, 6 deletions
diff --git a/lisp/org-compat.el b/lisp/org-compat.el
index 9eb9028..1a3cff6 100644
--- a/lisp/org-compat.el
+++ b/lisp/org-compat.el
@@ -61,12 +61,6 @@
(defalias 'format-message 'format)
(defalias 'gui-get-selection 'x-get-selection))
-(defun org-decode-time (&optional time zone)
- "Backward-compatible function for `decode-time'."
- (if (< emacs-major-version 25)
- (decode-time time)
- (decode-time time zone)))
-
(unless (fboundp 'directory-name-p)
(defun directory-name-p (name)
"Return non-nil if NAME ends with a directory separator character."