Variable: org-priority-lowest

org-priority-lowest is a customizable variable defined in org.el.gz.

Value

67

Documentation

The lowest priority of TODO items.

A character like ?C, ?B, etc., or a numeric value like 9, 8, etc.

The default is the character ?C, which is 67 as a numeric value.

If you set org-priority-lowest to a numeric value inferior to
65, Org assumes you want to use digits for the priority cookie.
If you set it to >=65, Org assumes you want to use alphabetical characters.

In both cases, the value of org-priority-lowest must be greater than org-priority-highest: for example, if "C" is the lowest priority, it is greater than the highest "A" priority: 67 >
65.

This variable was added, or its default value changed, in Org version
9.8.

Aliases

org-lowest-priority

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-priority-lowest ?C
  "The lowest priority of TODO items.

A character like ?C, ?B, etc., or a numeric value like 9, 8, etc.

The default is the character ?C, which is 67 as a numeric value.

If you set `org-priority-lowest' to a numeric value inferior to
65, Org assumes you want to use digits for the priority cookie.
If you set it to >=65, Org assumes you want to use alphabetical
characters.

In both cases, the value of `org-priority-lowest' must be greater
than `org-priority-highest': for example, if \"C\" is the lowest
priority, it is greater than the highest \"A\" priority: 67 >
65."
  :group 'org-priorities
  :package-version '(Org . "9.8")
  :type '( restricted-sexp :tag "Number 0-64 or uppercase character A-Z"
           :match-alternatives ((lambda (val) (org-priority-valid-value-p val t))))
  :safe #'integerp)