Function: reftex-refontify
reftex-refontify is a byte-compiled function defined in reftex.el.gz.
Signature
(reftex-refontify)
Documentation
Return t if we need to refontify context.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex.el.gz
;;; =========================================================================
;;;
;;; Fontification and Highlighting
(defun reftex-refontify ()
"Return t if we need to refontify context."
(and reftex-use-fonts
(or (eq t reftex-refontify-context)
(and (eq 1 reftex-refontify-context)
;; Test of we use the font-lock version of x-symbol
(and (featurep 'x-symbol-tex) (not (boundp 'x-symbol-mode)))))))