Function: org-unfontify-region
org-unfontify-region is a byte-compiled function defined in org.el.gz.
Signature
(org-unfontify-region BEG END &optional MAYBE_LOUDLY)
Documentation
Remove fontification and activation overlays from links.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-unfontify-region (beg end &optional _maybe_loudly)
"Remove fontification and activation overlays from links."
(font-lock-default-unfontify-region beg end)
(with-silent-modifications
(decompose-region beg end)
(remove-text-properties beg end
'(mouse-face t keymap t org-linked-text t
invisible t intangible t
org-emphasis t))
(org-fold-core-update-optimisation beg end)
(org-remove-font-lock-display-properties beg end)))