Function: hyrolo-hdr-in-p
hyrolo-hdr-in-p is a byte-compiled function defined in hyrolo.el.
Signature
(hyrolo-hdr-in-p)
Documentation
If point is within a file header, return t, else nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hyrolo.el
(defun hyrolo-hdr-in-p ()
"If point is within a file header, return t, else nil."
(or (looking-at hyrolo-hdr-regexp)
(save-excursion (hyrolo-hdr-to-first-line-p))))