Function: goto-address-unfontify

goto-address-unfontify is a byte-compiled function defined in goto-addr.el.gz.

Signature

(goto-address-unfontify START END)

Documentation

Remove goto-address fontification from the given region.

Source Code

;; Defined in /usr/src/emacs/lisp/net/goto-addr.el.gz
(defun goto-address-unfontify (start end)
  "Remove `goto-address' fontification from the given region."
  (dolist (overlay (overlays-in start end))
    (if (overlay-get overlay 'goto-address)
	(delete-overlay overlay))))