Variable: conf-space-font-lock-keywords

conf-space-font-lock-keywords is a variable defined in conf-mode.el.gz.

Value

(("^[   ]*\\[\\(.+\\)\\]" 1 'font-lock-type-face)
 ("^[   ]*\\(.+?\\)[    \n]*{[^{}]*?$" 1 'font-lock-type-face)
 (eval if conf-space-keywords
       (list
	(concat "^[     ]*\\(" conf-space-keywords
		"\\)[   ]+\\([^�- ]+\\)")
	'(1 'font-lock-keyword-face)
	'(2 'font-lock-variable-name-face))
       '("^[    ]*\\([^�- ]+\\)" 1 'font-lock-variable-name-face)))

Documentation

Keywords to highlight in Conf Space mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/conf-mode.el.gz
(defvar conf-space-font-lock-keywords
  '(;; [section] (do this first because it may look like a parameter)
    ("^[ \t]*\\[\\(.+\\)\\]" 1 'font-lock-type-face)
    ;; section { ... } (do this first because it looks like a parameter)
    ("^[ \t]*\\(.+?\\)[ \t\n]*{[^{}]*?$" 1 'font-lock-type-face)
    ;; var val
    (eval if conf-space-keywords
	  (list (concat "^[ \t]*\\(" conf-space-keywords "\\)[ \t]+\\([^\000- ]+\\)")
		'(1 'font-lock-keyword-face)
		'(2 'font-lock-variable-name-face))
	  '("^[ \t]*\\([^\000- ]+\\)" 1 'font-lock-variable-name-face)))
  "Keywords to highlight in Conf Space mode.")