Function: hsys-org-todo-at-p

hsys-org-todo-at-p is a byte-compiled function defined in hsys-org.el.

Signature

(hsys-org-todo-at-p)

Documentation

Return non-nil iff point is on an Org mode todo keyword.

Assume caller has already checked that the current buffer is in org-mode.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-todo-at-p ()
  "Return non-nil iff point is on an Org mode todo keyword.
Assume caller has already checked that the current buffer is in `org-mode'."
  (and (apply #'derived-mode-p '(org-mode))
       (assq :todo-keyword (org-context))
       t))