From cd00d36ca2872b746a8ee1e749658eda0aa8711a Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sun, 6 Jan 2013 09:14:54 +0100 Subject: [PATCH] org-agenda.el (org-agenda-finalize): Only try to draw the habit consistency graph when there is a habit in the buffer * org-agenda.el (org-agenda-finalize): Only try to draw the habit consistency graph when there is a habit in the buffer. --- lisp/org-agenda.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index a3bf996ea..a9e7a7a6a 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -3545,7 +3545,8 @@ generating a new one." (when org-agenda-entry-text-mode (org-agenda-entry-text-hide) (org-agenda-entry-text-show)) - (if (functionp 'org-habit-insert-consistency-graphs) + (if (and (functionp 'org-habit-insert-consistency-graphs) + (save-excursion (next-single-property-change (point-min) 'org-habit-p))) (org-habit-insert-consistency-graphs)) (let ((inhibit-read-only t)) (run-hooks 'org-agenda-finalize-hook))