Function: org-get-category

org-get-category is a byte-compiled function defined in org.el.gz.

Signature

(org-get-category &optional POS _)

Documentation

Get the category applying to position POS.

Return "???" when no category is set.

This function may modify the match data.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-get-category (&optional pos _)
  "Get the category applying to position POS.
Return \"???\" when no category is set.

This function may modify the match data."
  ;; Sync cache.
  (or (org-entry-get-with-inheritance
       "CATEGORY" nil (or pos (point)))
      "???"))