Function: org-is-habit-p

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

Signature

(org-is-habit-p &optional POM)

Documentation

Is the task at POM or point a habit?

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-habit.el.gz
(defun org-is-habit-p (&optional pom)
  "Is the task at POM or point a habit?"
  (string= "habit" (org-entry-get (or pom (point)) "STYLE")))