Function: outline-move-subtree-up

outline-move-subtree-up is an interactive and byte-compiled function defined in outline.el.gz.

Signature

(outline-move-subtree-up &optional ARG)

Documentation

Move the current subtree up past ARG headlines of the same level.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/outline.el.gz
;; Vertical tree motion

(defun outline-move-subtree-up (&optional arg)
  "Move the current subtree up past ARG headlines of the same level."
  (interactive "p")
  (outline-move-subtree-down (- arg)))