From 12f4dd3d01b5521f5e35d855ae5f12600104d509 Mon Sep 17 00:00:00 2001
From: Jose Robins <jose.robins@gmail.com>
Date: Thu, 1 Feb 2018 15:02:10 -0800
Subject: [PATCH] org-clock.el: Add an autoload entry for the function
 org-clock-sum-today

* lisp/org-clock.el: When the org-mode is called for the very first time
any functionality that requires the org-clock-sum-today used to fail.
(e.g. a column that calculates CLOCKSUM_T)
---
 lisp/org-clock.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index aa59d821e..8b5e8b1aa 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -1755,6 +1755,7 @@ With prefix arg SELECT, offer recently clocked tasks for selection."
 (defvar-local org-clock-file-total-minutes nil
   "Holds the file total time in minutes, after a call to `org-clock-sum'.")
 
+;;;###autoload
 (defun org-clock-sum-today (&optional headline-filter)
   "Sum the times for each subtree for today."
   (let ((range (org-clock-special-range 'today)))
-- 
2.14.2.windows.3

