Variable: tcl-builtin-list

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

Value

("after" "append" "array" "bgerror" "binary" "catch" "cd" "clock"
 "close" "concat" "console" "dde" "encoding" "eof" "exec" "expr"
 "fblocked" "fconfigure" "fcopy" "file" "fileevent" "flush" "format"
 "gets" "glob" "history" "incr" "info" "interp" "join" "lappend"
 "lindex" "linsert" "list" "llength" "load" "lrange" "lreplace"
 "lsort" "namespace" "open" "package" "pid" "puts" "pwd" "read"
 "regexp" "registry" "regsub" "rename" "scan" "seek" "set" "socket"
 "source" "split" "string" "subst" "tell" "time" "trace" "unknown"
 "unset" "vwait")

Documentation

List of Tcl commands. Used only for highlighting.

Call tcl-set-font-lock-keywords after changing this list. This list excludes those commands already found in tcl-proc-list and tcl-keyword-list.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/tcl.el.gz
(defvar tcl-builtin-list
  '("after" "append" "array" "bgerror" "binary" "catch" "cd" "clock"
    "close" "concat" "console" "dde" "encoding" "eof" "exec" "expr"
    "fblocked" "fconfigure" "fcopy" "file" "fileevent" "flush"
    "format" "gets" "glob" "history" "incr" "info" "interp" "join"
    "lappend" "lindex" "linsert" "list" "llength" "load" "lrange"
    "lreplace" "lsort" "namespace" "open" "package" "pid" "puts" "pwd"
    "read" "regexp" "registry" "regsub" "rename" "scan" "seek" "set"
    "socket" "source" "split" "string" "subst" "tell" "time" "trace"
    "unknown" "unset" "vwait")
  "List of Tcl commands.  Used only for highlighting.
Call `tcl-set-font-lock-keywords' after changing this list.
This list excludes those commands already found in `tcl-proc-list' and
`tcl-keyword-list'.")