Function: org-priority-to-value

org-priority-to-value is a byte-compiled function defined in org.el.gz.

Signature

(org-priority-to-value S)

Documentation

Convert priority string S to its numeric value.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-priority-to-value (s)
  "Convert priority string S to its numeric value."
  (or (save-match-data
	(and (string-match "\\([0-9]+\\)" s)
	     (string-to-number (match-string 1 s))))
      (string-to-char s)))