Function: allout-end-of-current-subtree
allout-end-of-current-subtree is an interactive and byte-compiled
function defined in allout.el.gz.
Signature
(allout-end-of-current-subtree &optional INCLUDE-TRAILING-BLANK)
Documentation
Put point at end of last leaf in currently visible containing topic.
Optional INCLUDE-TRAILING-BLANK means include a trailing blank line, if any, as part of the subtree. Otherwise, that trailing blank will be excluded as delimiting whitespace between topics.
Returns the value of point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-end-of-current-subtree (&optional include-trailing-blank)
(defun allout-end-of-current-subtree (&optional include-trailing-blank)
"Put point at end of last leaf in currently visible containing topic.
Optional INCLUDE-TRAILING-BLANK means include a trailing blank line, if
any, as part of the subtree. Otherwise, that trailing blank will be
excluded as delimiting whitespace between topics.
Returns the value of point."
(interactive)
(allout-end-of-subtree t include-trailing-blank))