Function: org-priority-up

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

Signature

(org-priority-up)

Documentation

Increase the priority of the current item.

Key Bindings

Source Code

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