Variable: idlwave-font-lock-keywords

idlwave-font-lock-keywords is a variable defined in idlwave.el.gz.

Value

(("\\<\\(function\\|pro\\)\\>[    ]+\\(\\sw+\\(::\\sw+\\)?\\)"
  (1 font-lock-keyword-face)
  (2 font-lock-function-name-face nil t))
 ("^[   ]*\\(@[^        \n]+\\)"
  (1 font-lock-string-face))
 "\\<\\(&&\\|and\\|b\\(egin\\|reak\\)\\|c\\(ase\\|o\\(mpile_opt\\|ntinue\\)\\)\\|do\\|e\\(lse\\|nd\\(case\\|else\\|for\\|if\\|rep\\|switch\\|while\\)?\\|q\\)\\|for\\(ward_function\\)?\\|g\\(oto\\|[et]\\)\\|i\\(f\\|nherits\\)\\|l[et]\\|mod\\|n\\(e\\|ot\\)\\|o\\(n_\\(error\\|ioerror\\)\\|[fr]\\)\\|re\\(peat\\|turn\\)\\|switch\\|then\\|until\\|while\\|xor\\|||\\)\\>"
 ("^[   ]*\\([a-zA-Z]\\sw*:\\)"
  (1 font-lock-constant-face))
 ("\\(goto\\)[  ]*,[    ]*\\([a-zA-Z]\\sw*\\)"
  (1 font-lock-keyword-face)
  (2 font-lock-constant-face))
 ("\\<\\(common\\)\\>[    ]*\\(\\sw+\\)?[         ]*,?"
  (1 font-lock-keyword-face)
  (2 font-lock-constant-face nil t)
  ("[   ]*\\(\\sw+\\)[ ,]*" nil nil
   (1 font-lock-variable-name-face)))
 (idlwave-match-class-arrows
  (0 idlwave-class-arrow-face)))

Documentation

Default expressions to highlight in IDLWAVE mode.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defvar idlwave-font-lock-keywords idlwave-font-lock-keywords-2
  "Default expressions to highlight in IDLWAVE mode.")