scheme-font-lock-keywords
scheme-font-lock-keywords is a variable defined in `
scheme.el
'.
Its value is shown
below.
- This variable may be risky if used as a file-local variable.
Documentation:
Default expressions to highlight in Scheme modes.
Value:
(("(\\(define\\*?\\(\\(\\|-public\\|-method\\|-generic\\(-procedure\\)?\\)\\|\\(-syntax\\|-macro\\)\\|-class\\|-module\\)\\)\\>[ ]*(*\\(\\sw+\\)?"
(1 font-lock-keyword-face)
(6
(cond
((match-beginning 3)
font-lock-function-name-face)
((match-beginning 5)
font-lock-variable-name-face)
(t font-lock-type-face))
nil t)))