2009-09-03 Carsten Dominik <dominik@u016822.science.uva.nl>
* org-agenda.el (org-agenda-dim-blocked-tasks): Make sure we are referencing the start of the line.
This commit is contained in:
parent
40ba71a5b6
commit
53e31a3152
2 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
2009-09-03 Carsten Dominik <dominik@u016822.science.uva.nl>
|
||||
|
||||
* 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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue