pascal-font-lock-keywords
pascal-font-lock-keywords is a variable defined in `
pascal.el
'.
Its value is shown
below.
- This variable may be risky if used as a file-local variable.
Documentation:
Additional expressions to highlight in Pascal mode.
Value:
(("\\_<\\(function\\|pro\\(cedure\\|gram\\)\\)[ ]+\\([[:alpha:]][[:alnum:]_]*\\)"
(1 font-lock-keyword-face)
(3 font-lock-function-name-face))
("\\_<\\(array\\|boolean\\|c\\(har\\|onst\\)\\|file\\|integer\\|re\\(al\\|cord\\)\\|type\\|var\\)\\_>" . font-lock-type-face)
("\\_<\\(label\\|external\\|forward\\)\\_>" . font-lock-constant-face)
("\\_<\\([0-9]+\\)[ ]*:" 1 font-lock-function-name-face)
"\\_<\\(and\\|begin\\|case\\|do\\|e\\(lse\\|nd\\)\\|for\\|i[fn]\\|not\\|o[fr]\\|repeat\\|t\\(hen\\|o\\)\\|until\\|w\\(hile\\|ith\\)\\)\\_>"
("\\_<\\(goto\\)\\_>[ ]*\\([0-9]+\\)?"
(1 font-lock-keyword-face)
(2 font-lock-keyword-face t)))