浏览代码

Fix compilation warning

* lisp/org.el (org-parse-time-string): Fix compilation warning.
Nicolas Goaziou 8 年之前
父节点
当前提交
673fe87b05
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      lisp/org.el

+ 5 - 1
lisp/org.el

@@ -17964,7 +17964,11 @@ in the TZ environment variable."
 	       (string-to-number (match-string 2 s))
 	       nil nil zone))
 	((string-match "^<[^>]+>$" s)
-	 (decode-time (seconds-to-time (org-matcher-time s)) zone))
+	 ;; FIXME: `decode-time' needs to be called with ZONE as its
+	 ;; second argument.  However, this requires at least Emacs
+	 ;; 25.1.  We can do it when we switch to this version as our
+	 ;; minimal requirement.
+	 (decode-time (seconds-to-time (org-matcher-time s))))
 	(t (error "Not a standard Org time string: %s" s))))
 
 (defun org-timestamp-up (&optional arg)