Function: org-priority-number-p

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

Signature

(org-priority-number-p PRIORITY)

Documentation

Return t if the PRIORITY is an integer 0 through 64, inclusive, nil otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-priority-number-p (priority)
  "Return t if the PRIORITY is an integer 0 through 64, inclusive, nil otherwise."
  (and (integerp priority)
       (<= 0 priority 64)))