aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/org/ChangeLog4
-rw-r--r--lisp/org/org-agenda.el4
2 files changed, 7 insertions, 1 deletions
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 @@
12009-09-03 Carsten Dominik <dominik@u016822.science.uva.nl> 12009-09-03 Carsten Dominik <dominik@u016822.science.uva.nl>
2 2
3 * org-protocol.el (org-protocol-store-link)
4 (org-protocol-remember, org-protocol-open-source): Remove autoload
5 cookies again.
6
3 * org-agenda.el (org-agenda-dim-blocked-tasks): Make sure we are 7 * org-agenda.el (org-agenda-dim-blocked-tasks): Make sure we are
4 referencing the start of the line. 8 referencing the start of the line.
5 9
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.")
2573 :from 'todo 2573 :from 'todo
2574 :to 'done))))))) 2574 :to 'done)))))))
2575 (if org-blocked-by-checkboxes (setq invis1 nil)) 2575 (if org-blocked-by-checkboxes (setq invis1 nil))
2576 (setq b (if invis1 (max (point-min) (1- (point))) (point)) 2576 (setq b (if invis1
2577 (max (point-min) (1- (point-at-bol)))
2578 (point-at-bol))
2577 e (point-at-eol) 2579 e (point-at-eol)
2578 ov (org-make-overlay b e)) 2580 ov (org-make-overlay b e))
2579 (if invis1 2581 (if invis1