Variable: tcl-font-lock-keywords

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

Value

(("^\\s-*\\(body\\|c\\(?:lass\\|onfigbody\\)\\|itcl_class\\|method\\|namespace\\|proc\\)[       ]+\\([^         \n]+\\)" 2 font-lock-function-name-face)
 ("\\(\\s-\\|^\\)\\(common\\|global\\|i\\(?:nherit\\|tk_option\\)\\|p\\(?:r\\(?:ivate\\|otected\\)\\|ublic\\)\\|upvar\\|variable\\)\\(\\s-\\|$\\)" 2 font-lock-type-face)
 ("\\_<\\(a\\(?:fter\\|ppend\\|rray\\)\\|b\\(?:gerror\\|inary\\)\\|c\\(?:atch\\|d\\|lo\\(?:ck\\|se\\)\\|on\\(?:cat\\|sole\\)\\)\\|dde\\|e\\(?:ncoding\\|of\\|x\\(?:ec\\|pr\\)\\)\\|f\\(?:blocked\\|co\\(?:nfigure\\|py\\)\\|ile\\(?:event\\)?\\|lush\\|ormat\\)\\|g\\(?:ets\\|lob\\)\\|history\\|in\\(?:cr\\|fo\\|terp\\)\\|join\\|l\\(?:append\\|i\\(?:n\\(?:dex\\|sert\\)\\|st\\)\\|length\\|oad\\|r\\(?:\\(?:ang\\|eplac\\)e\\)\\|sort\\)\\|namespace\\|open\\|p\\(?:ackage\\|id\\|uts\\|wd\\)\\|re\\(?:ad\\|g\\(?:exp\\|istry\\|sub\\)\\|name\\)\\|s\\(?:can\\|e\\(?:ek\\|t\\)\\|o\\(?:cket\\|urce\\)\\|plit\\|tring\\|ubst\\)\\|t\\(?:ell\\|\\(?:im\\|rac\\)e\\)\\|un\\(?:known\\|set\\)\\|vwait\\)\\_>" 1 font-lock-builtin-face)
 ("\\${\\([^}]+\\)}" 1 font-lock-variable-name-face)
 ("\\$\\(\\(?:::\\)?\\(?:[[:alnum:]_]+::\\)*[[:alnum:]_]+\\)" 1 font-lock-variable-name-face)
 ("\\(?:\\s-\\|^\\|\\[\\)set\\s-+{\\([^}]+\\)}" 1 font-lock-variable-name-face keep)
 ("\\(?:\\s-\\|^\\|\\[\\)set\\s-+\\(\\(?:::\\)?\\(?:[[:alnum:]_]+::\\)*[[:alnum:]_]+\\)" 1 font-lock-variable-name-face keep)
 ("\\(^\\|[^\\]\\)\\(\\\\\\\\\\)*\\(\\\\\\)$" 3 'tcl-escaped-newline)
 ("\\_<\\(b\\(?:ody\\|reak\\)\\|c\\(?:ase\\|hain\\|lass\\|on\\(?:figbody\\|structor\\|tinue\\)\\)\\|de\\(?:fault\\|structor\\)\\|e\\(?:lse\\(?:if\\)?\\|rror\\|val\\|xit\\)\\|for\\(?:_\\(?:array_keys\\|file\\|recursive_glob\\)\\|each\\)?\\|i\\(?:tcl_class\\|[fn]\\)\\|loop\\|method\\|proc\\|return\\|switch\\|then\\|uplevel\\|while\\)\\_>" . 1))

Documentation

Keywords to highlight for Tcl. See variable font-lock-keywords.

This variable is generally set from tcl-proc-regexp, tcl-typeword-list, and tcl-keyword-list by the function tcl-set-font-lock-keywords.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/tcl.el.gz
(defvar tcl-font-lock-keywords nil
  "Keywords to highlight for Tcl.  See variable `font-lock-keywords'.
This variable is generally set from `tcl-proc-regexp',
`tcl-typeword-list', and `tcl-keyword-list' by the function
`tcl-set-font-lock-keywords'.")