branch: externals/org
commit 34c99027e0c668ed706b7652eb48e9bf309a5448
Merge: f2be2fd073 fd8ddf2874
Author: Ihor Radchenko <yanta...@posteo.net>
Commit: Ihor Radchenko <yanta...@posteo.net>

    Merge branch 'bugfix'
---
 lisp/org-clock.el | 47 +++++++++++++++++++++++++----------------------
 1 file changed, 25 insertions(+), 22 deletions(-)

diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index 5555bb1bc3..c6fd507b08 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -2048,28 +2048,31 @@ PROPNAME lets you set a custom text property instead of 
:org-clock-minutes."
            (cond
             ((and (eq element-type 'clock) (match-end 2))
              ;; Two time stamps.
-             (let* ((timestamp (org-element-property :value element))
-                    (ts (float-time
-                          (org-encode-time
-                           (list 0
-                                 (org-element-property :minute-start timestamp)
-                                 (org-element-property :hour-start timestamp)
-                                 (org-element-property :day-start timestamp)
-                                 (org-element-property :month-start timestamp)
-                                 (org-element-property :year-start timestamp)
-                                 nil -1 nil))))
-                    (te (float-time
-                          (org-encode-time
-                           (list 0
-                                 (org-element-property :minute-end timestamp)
-                                 (org-element-property :hour-end timestamp)
-                                 (org-element-property :day-end timestamp)
-                                 (org-element-property :month-end timestamp)
-                                 (org-element-property :year-end timestamp)
-                                 nil -1 nil))))
-                    (dt (- (if tend (min te tend) te)
-                           (if tstart (max ts tstart) ts))))
-               (when (> dt 0) (cl-incf t1 (floor dt 60)))))
+              (condition-case nil
+                 (let* ((timestamp (org-element-property :value element))
+                        (ts (float-time
+                              (org-encode-time
+                               (list 0
+                                     (org-element-property :minute-start 
timestamp)
+                                     (org-element-property :hour-start 
timestamp)
+                                     (org-element-property :day-start 
timestamp)
+                                     (org-element-property :month-start 
timestamp)
+                                     (org-element-property :year-start 
timestamp)
+                                     nil -1 nil))))
+                        (te (float-time
+                              (org-encode-time
+                               (list 0
+                                     (org-element-property :minute-end 
timestamp)
+                                     (org-element-property :hour-end timestamp)
+                                     (org-element-property :day-end timestamp)
+                                     (org-element-property :month-end 
timestamp)
+                                     (org-element-property :year-end timestamp)
+                                     nil -1 nil))))
+                        (dt (- (if tend (min te tend) te)
+                               (if tstart (max ts tstart) ts))))
+                   (when (> dt 0) (cl-incf t1 (floor dt 60))))
+                (error
+                 (org-display-warning (format "org-clock-sum: Ignoring invalid 
%s" (org-current-line-string))))))
             ((match-end 4)
              ;; A naked time.
              (setq t1 (+ t1 (string-to-number (match-string 5))

Reply via email to