Function: org-restart-font-lock
org-restart-font-lock is a byte-compiled function defined in
org.el.gz.
Signature
(org-restart-font-lock)
Documentation
Restart font-lock-mode(var)/font-lock-mode(fun), to force refontification.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-restart-font-lock ()
"Restart `font-lock-mode', to force refontification."
(when font-lock-mode
(font-lock-mode -1)
(font-lock-mode 1)))