Function: org-priority-down

org-priority-down is an interactive and byte-compiled function defined in org.el.gz.

Signature

(org-priority-down)

Documentation

Decrease the priority of the current item.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-priority-down ()
  "Decrease the priority of the current item."
  (interactive)
  (org-priority 'down))