From 490ef86497367f282222d849280ac6d406d1cad2 Mon Sep 17 00:00:00 2001 From: Thomas Morgan Date: Fri, 16 Mar 2012 19:35:44 +0100 Subject: [PATCH] org-habit.el: Fix bug while inserting habit graph in the agenda buffer. * org-habit.el (org-habit-insert-consistency-graphs): Fix bug while inserting habit graph in the agenda buffer. TINYCHANGE --- lisp/org-habit.el | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/lisp/org-habit.el b/lisp/org-habit.el index f8bd12ae4..aca343065 100644 --- a/lisp/org-habit.el +++ b/lisp/org-habit.el @@ -344,13 +344,12 @@ current time." (delete-char (min (+ 1 org-habit-preceding-days org-habit-following-days) (- (line-end-position) (point)))) - (insert (org-habit-build-graph - habit - (time-subtract moment - (days-to-time org-habit-preceding-days)) - moment - (time-add moment - (days-to-time org-habit-following-days)))))) + (insert-before-markers + (org-habit-build-graph + habit + (time-subtract moment (days-to-time org-habit-preceding-days)) + moment + (time-add moment (days-to-time org-habit-following-days)))))) (forward-line))))) (defun org-habit-toggle-habits ()