Function: hyrolo-mail-to
hyrolo-mail-to is an interactive and byte-compiled function defined in
hyrolo.el.
Signature
(hyrolo-mail-to)
Documentation
Start composing mail addressed to the first e-mail address at or after point.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-mail-to ()
"Start composing mail addressed to the first e-mail address at or after point."
(interactive)
(let ((opoint (point)) ibut)
(skip-chars-backward "^ \t\n\r<>")
(if (and (re-search-forward hypb:mail-address-regexp nil t)
(goto-char (match-beginning 1))
(setq ibut (ibut:at-p)))
(hui:hbut-act ibut)
(goto-char opoint)
(beep)
(message "(hyrolo-mail-to): Invalid buffer or no e-mail address found"))))