Function: org-promote-subtree
org-promote-subtree is an interactive and byte-compiled function
defined in org.el.gz.
Signature
(org-promote-subtree)
Documentation
Promote the entire subtree.
See also org-promote.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-promote-subtree ()
"Promote the entire subtree.
See also `org-promote'."
(interactive)
(save-excursion
(org-back-to-heading t)
(org-combine-change-calls (point) (save-excursion (org-end-of-subtree t))
(org-with-limited-levels (org-map-tree 'org-promote))))
(org-fix-position-after-promote))