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-20260414.325/hyrolo.el
(defun hyrolo-hdr-in-p ()
"If point is within a file header, return t, else nil."
(save-excursion (when (looking-at hyrolo-hdr-regexp)
(goto-char (1+ (point))))
(hyrolo-hdr-to-first-line-p)))