aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org/org-agenda.el
diff options
context:
space:
mode:
authorCarsten Dominik <[email protected]>2009-09-03 07:20:18 +0000
committerCarsten Dominik <[email protected]>2009-09-03 07:20:18 +0000
commit53e31a315279ecbf490f76603ef59da5634621c8 (patch)
tree62210394e1b9a08f8abae2a50554e3cbd7433ba8 /lisp/org/org-agenda.el
parent40ba71a5b6edbc9ce4e9a63e2253de02f2486be0 (diff)
2009-09-03 Carsten Dominik <[email protected]>
* org-agenda.el (org-agenda-dim-blocked-tasks): Make sure we are referencing the start of the line.
Diffstat (limited to 'lisp/org/org-agenda.el')
-rw-r--r--lisp/org/org-agenda.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el
index c776e33c38..feea27dfb1 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