Function: hyrolo-display-to-entry-end

hyrolo-display-to-entry-end is a byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-display-to-entry-end)

Documentation

Go to end of current entry, ignoring sub-entries.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-display-to-entry-end ()
  "Go to end of current entry, ignoring sub-entries."
  (let (case-fold-search)
    (if (re-search-forward hyrolo-hdr-and-entry-regexp nil t)
	(progn (beginning-of-line) (point))
      (goto-char (point-max)))))