Function: allout-up-current-level
allout-up-current-level is an interactive and byte-compiled function
defined in allout.el.gz.
Signature
(allout-up-current-level ARG)
Documentation
Move out ARG levels from current visible topic.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-up-current-level (arg)
(defun allout-up-current-level (_arg)
"Move out ARG levels from current visible topic."
(interactive "p")
(let ((start-point (point)))
(allout-back-to-current-heading)
(if (not (allout-ascend))
(progn (goto-char start-point)
(error "Can't ascend past outermost level"))
(if (allout-called-interactively-p) (allout-end-of-prefix))
allout-recent-prefix-beginning)))