Function: org-entry-blocked-p

org-entry-blocked-p is a byte-compiled function defined in org.el.gz.

Signature

(org-entry-blocked-p)

Documentation

Non-nil if entry at point is blocked.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
      t))) ; do not block

(defun org-entry-blocked-p ()
  "Non-nil if entry at point is blocked."
  (and (not (org-entry-get nil "NOBLOCKING"))
       (member (org-entry-get nil "TODO") org-not-done-keywords)
       (not (run-hook-with-args-until-failure
	     'org-blocker-hook
	     (list :type 'todo-state-change
		   :position (point)
		   :from 'todo
		   :to 'done)))))