org-compat: Remove `org-decode-time'

* lisp/org-compat.el (org-decode-time): Remove compatibility function,
  no longer used.
This commit is contained in:
Nicolas Goaziou 2018-02-01 22:42:35 +01:00
parent 0790855c93
commit e570e964a3
1 changed files with 0 additions and 6 deletions

View File

@ -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."