Function: org-up-heading-all

org-up-heading-all is a byte-compiled function defined in org.el.gz.

Signature

(org-up-heading-all ARG)

Documentation

Move to the heading line of which the present line is a subheading.

This function considers both visible and invisible heading lines. With argument, move up ARG levels.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-up-heading-all (arg)
  "Move to the heading line of which the present line is a subheading.
This function considers both visible and invisible heading lines.
With argument, move up ARG levels."
  (outline-up-heading arg t))