Function: goto-address-fontify-region
goto-address-fontify-region is a byte-compiled function defined in
goto-addr.el.gz.
Signature
(goto-address-fontify-region START END)
Documentation
Fontify URLs and e-mail addresses in the given region.
Source Code
;; Defined in /usr/src/emacs/lisp/net/goto-addr.el.gz
(defun goto-address-fontify-region (start end)
"Fontify URLs and e-mail addresses in the given region."
(save-excursion
(let ((beg-line (progn (goto-char start) (line-beginning-position)))
(end-line (progn (goto-char end) (line-end-position))))
(goto-address-fontify beg-line end-line))))