org-agenda.el (org-agenda-dim-blocked-tasks): Only throw a message when called interactively

* org-agenda.el (org-agenda-dim-blocked-tasks): Only throw a
message when called interactively.  Fix docstring position in
the defun.
This commit is contained in:
Bastien Guerry 2013-03-19 09:57:11 +01:00
parent 3725c417ea
commit 5127f56790

View file

@ -3792,9 +3792,10 @@ generating a new one."
(overlay-put ov 'org-type 'org-priority)))))
(defun org-agenda-dim-blocked-tasks (&optional invisible)
(interactive "P")
"Dim currently blocked TODO's in the agenda display."
(message "Dim or hide blocked tasks...")
(interactive "P")
(when (org-called-interactively-p 'any)
(message "Dim or hide blocked tasks..."))
(mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
(delete-overlay o)))
(overlays-in (point-min) (point-max)))