Function: smart-outline-to-entry-end
smart-outline-to-entry-end is a byte-compiled function defined in
hui-mouse.el.
Signature
(smart-outline-to-entry-end &optional INCLUDE-SUB-ENTRIES)
Documentation
Move point past the end of the current entry, if any.
With optional INCLUDE-SUB-ENTRIES non-nil, move to the end of the entire subtree. Return final point.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun smart-outline-to-entry-end (&optional include-sub-entries)
"Move point past the end of the current entry, if any.
With optional INCLUDE-SUB-ENTRIES non-nil, move to the end of the
entire subtree. Return final point."
(if (not include-sub-entries)
(outline-next-heading)
(condition-case ()
(progn (outline-end-of-subtree)
(goto-char (1+ (point))))
(error "")))
(point))