Variable: cwarn-font-lock-feature-keywords-alist

cwarn-font-lock-feature-keywords-alist is a customizable variable defined in cwarn.el.gz.

Value

((assign . cwarn-font-lock-assignment-keywords)
 (semicolon . cwarn-font-lock-semicolon-keywords)
 (reference . cwarn-font-lock-reference-keywords))

Documentation

An alist mapping a CWarn feature to font-lock keywords.

The keywords could either a font-lock keyword list or a symbol. If it is a symbol it is assumed to be a variable containing a font-lock keyword list.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cwarn.el.gz
(defcustom cwarn-font-lock-feature-keywords-alist
  '((assign    . cwarn-font-lock-assignment-keywords)
    (semicolon . cwarn-font-lock-semicolon-keywords)
    (reference . cwarn-font-lock-reference-keywords))
  "An alist mapping a CWarn feature to font-lock keywords.
The keywords could either a font-lock keyword list or a symbol.
If it is a symbol it is assumed to be a variable containing a font-lock
keyword list."
  :type '(alist :key-type (choice (const assign)
				  (const semicolon)
				  (const reference))
                :value-type (sexp :tag "Value")))