Function: org-get-priority-face

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

Signature

(org-get-priority-face PRIORITY)

Documentation

Get the right face for PRIORITY.

PRIORITY is a number from 0-64 or a character value from ?A to ?Z.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-get-priority-face (priority)
  "Get the right face for PRIORITY.
PRIORITY is a number from 0-64 or a character value from ?A to ?Z."
  (or (org-face-from-face-or-color
       'priority 'org-priority (cdr (assq priority org-priority-faces)))
      'org-priority))