Variable: reftex-refontify-context

reftex-refontify-context is a customizable variable defined in reftex-vars.el.gz.

Value

1

Documentation

Non-nil means, re-fontify the context in the label menu with font-lock.

This slightly slows down the creation of the label menu. It is only necessary when you definitely want the context fontified.

This option may have 3 different values:
nil Never refontify.
t Always refontify.
1 Refontify when absolutely necessary, e.g. when old versions of X-Symbol.
The option is ignored when reftex-use-fonts(var)/reftex-use-fonts(fun) is nil.

Probably introduced at or before Emacs version 20.3.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-refontify-context 1
  "Non-nil means, re-fontify the context in the label menu with font-lock.
This slightly slows down the creation of the label menu.  It is only necessary
when you definitely want the context fontified.

This option may have 3 different values:
nil  Never refontify.
t    Always refontify.
1    Refontify when absolutely necessary, e.g. when old versions of X-Symbol.
The option is ignored when `reftex-use-fonts' is nil."
  :group 'reftex-fontification-configurations
  :group 'reftex-referencing-labels
  :type '(choice
          (const :tag "Never" nil)
          (const :tag "Always" t)
          (const :tag "When necessary" 1)))