Function: hyrolo-hdr-to-last-line-p

hyrolo-hdr-to-last-line-p is a byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-hdr-to-last-line-p)

Documentation

If point is within a file header, go to its last line.

Return t in such cases. Otherwise, don't move and return nil.

The header includes lines matching both hyrolo-hdr-regexp and hbut:source-prefix.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-hdr-to-last-line-p ()
  "If point is within a file header, go to its last line.
Return t in such cases.  Otherwise, don't move and return nil.

The header includes lines matching both `hyrolo-hdr-regexp' and
`hbut:source-prefix'."
  (when (hyrolo-hdr-move-after-p)
    (forward-line -1)
    t))