Function: allout-end-of-level

allout-end-of-level is a byte-compiled function defined in allout.el.gz.

Signature

(allout-end-of-level &optional BACKWARD)

Documentation

Go to the last sibling at this level, visible or not.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   > allout-end-of-level (&optional backward)
(defun allout-end-of-level (&optional _backward)
  "Go to the last sibling at this level, visible or not."

  (let ((depth (allout-depth)))
    (while (allout-previous-sibling depth nil))
    (prog1 allout-recent-depth
      (if (allout-called-interactively-p) (allout-end-of-prefix)))))