From 53e31a315279ecbf490f76603ef59da5634621c8 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Thu, 3 Sep 2009 07:20:18 +0000 Subject: [PATCH] 2009-09-03 Carsten Dominik * org-agenda.el (org-agenda-dim-blocked-tasks): Make sure we are referencing the start of the line. --- lisp/org/ChangeLog | 4 ++++ lisp/org/org-agenda.el | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 5b3c2f31cc0..8769fde3e02 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,5 +1,9 @@ 2009-09-03 Carsten Dominik + * org-protocol.el (org-protocol-store-link) + (org-protocol-remember, org-protocol-open-source): Remove autoload + cookies again. + * org-agenda.el (org-agenda-dim-blocked-tasks): Make sure we are referencing the start of the line. diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index c776e33c38d..feea27dfb1e 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el @@ -2573,7 +2573,9 @@ bind it in the options section.") :from 'todo :to 'done))))))) (if org-blocked-by-checkboxes (setq invis1 nil)) - (setq b (if invis1 (max (point-min) (1- (point))) (point)) + (setq b (if invis1 + (max (point-min) (1- (point-at-bol))) + (point-at-bol)) e (point-at-eol) ov (org-make-overlay b e)) (if invis1 -- 2.39.5