org-agenda: Properly return all entries from blocked marking

* lisp/org-agenda.el (org-agenda--mark-blocked-entry): Always return
  the entry passed to `org-agenda--mark-blocked-entry' (previously
  returned nil if entry did not have todo-state text property).
This commit is contained in:
Yuri D. Lensky 2017-08-07 02:12:26 -04:00 committed by Nicolas Goaziou
parent bd9f63a22a
commit e28714c3f2
1 changed files with 2 additions and 2 deletions

View File

@ -3930,8 +3930,8 @@ to t."
(put-text-property
0 (length entry) 'org-todo-blocked
(if really-invisible 'invisible t)
entry))))))
entry))
entry)))))))
entry)
(defvar org-agenda-skip-function nil
"Function to be called at each match during agenda construction.