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 character.
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 character."
(or (org-face-from-face-or-color
'priority 'org-priority (cdr (assq priority org-priority-faces)))
'org-priority))