Function: hmail:hbdata-to-p
hmail:hbdata-to-p is a byte-compiled function defined in hmail.el.
Signature
(hmail:hbdata-to-p)
Documentation
Move point to the start of embedded Hyperbole button data.
Return t if button data is found, else nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmail.el
(defun hmail:hbdata-to-p ()
"Move point to the start of embedded Hyperbole button data.
Return t if button data is found, else nil."
(when (cond ((memq major-mode (list hmail:reader hmail:modifier))
(hmail:msg-narrow)
t)
((or (hmail:lister-p) (hnews:lister-p)) t)
((or (not (hypb:buffer-file-name))
(memq major-mode (list hmail:composer hnews:reader
hnews:composer)))
(widen)
t))
(goto-char (point-max))
(when (search-backward hmail:hbdata-sep nil t)
(forward-line 1)
t)))