Variable: org-priority-value-regexp
org-priority-value-regexp is a variable defined in org.el.gz.
Value
"[A-Z]\\|[0-9]\\|[1-5][0-9]\\|6[0-4]"
Documentation
Regular expression matching valid priority values.
The priority value must be a capital Latin alphabetic character, A through Z, or can be an integer value in the range 0 through 64.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defvar org-priority-value-regexp "[A-Z]\\|[0-9]\\|[1-5][0-9]\\|6[0-4]"
"Regular expression matching valid priority values.
The priority value must be a capital Latin
alphabetic character, A through Z, or can be an integer value in the range 0
through 64.")