From cc5a9bf538a4a7eb1b84d368336c46cead106e01 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 4 Jul 2017 00:18:05 +0200 Subject: [PATCH] Fix wrong data in clock table using :block * lisp/org.el (org-2ft): Use new signature for `org-parse-time-string'. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 567cf644d..da8df9997 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -14808,7 +14808,7 @@ it as a time string and apply `float-time' to it. If S is nil, just return 0." ((numberp s) s) ((stringp s) (condition-case nil - (float-time (apply 'encode-time (org-parse-time-string s))) + (float-time (apply #'encode-time (org-parse-time-string s nil t))) (error 0.))) (t 0.)))