diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index 9e0dc67..232f859 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -212,7 +212,11 @@ Add this function to `org-agenda-finalize-hook'." (insert-and-inherit (concat " (" (db/org-agenda-calculate-efforts - (next-single-property-change (point) 'day)) + (or (next-single-property-change (point) 'day) + ;; If nothing is shown on the current day, the previous + ;; call may return nil; in that case, don't sum anything + ;; by setting the limit to 0 + 0)) ")")) (forward-line)))))