Function: allout-end-of-entry
allout-end-of-entry is an interactive and byte-compiled function
defined in allout.el.gz.
Signature
(allout-end-of-entry &optional INCLUSIVE)
Documentation
Position the point at the end of the current topics' entry.
Optional INCLUSIVE means also include trailing empty line, if any. When unset, whitespace between items separates them even when the items are collapsed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-end-of-entry (&optional inclusive)
(defun allout-end-of-entry (&optional inclusive)
"Position the point at the end of the current topics' entry.
Optional INCLUSIVE means also include trailing empty line, if any. When
unset, whitespace between items separates them even when the items are
collapsed."
(interactive)
(allout-pre-next-prefix)
(if (and (not inclusive) (not (bobp)) (= ?\n (preceding-char)))
(forward-char -1))
(point))