Variable: tcl-keyword-list

tcl-keyword-list is a variable defined in tcl.el.gz.

Value

("if" "then" "else" "elseif" "for" "foreach" "break" "continue"
 "while" "eval" "case" "in" "switch" "default" "exit" "error" "proc"
 "return" "uplevel" "constructor" "destructor" "itcl_class" "loop"
 "for_array_keys" "for_recursive_glob" "for_file" "method" "body"
 "configbody" "class" "chain")

Documentation

List of Tcl keywords. Used only for highlighting.

Default list includes some TclX keywords. Call tcl-set-font-lock-keywords after changing this list.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/tcl.el.gz
;; Generally I've picked control operators to be keywords.
(defvar tcl-keyword-list
  '("if" "then" "else" "elseif" "for" "foreach" "break" "continue" "while"
    "eval" "case" "in" "switch" "default" "exit" "error" "proc" "return"
    "uplevel" "constructor" "destructor" "itcl_class" "loop" "for_array_keys"
    "for_recursive_glob" "for_file" "method" "body" "configbody" "class"
    "chain")
  "List of Tcl keywords.  Used only for highlighting.
Default list includes some TclX keywords.
Call `tcl-set-font-lock-keywords' after changing this list.")