Function: tcl-set-proc-regexp

tcl-set-proc-regexp is a byte-compiled function defined in tcl.el.gz.

Signature

(tcl-set-proc-regexp)

Documentation

Set tcl-proc-regexp from variable tcl-proc-list.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/tcl.el.gz
;;
;; Some helper functions.
;;

(defun tcl-set-proc-regexp ()
  "Set `tcl-proc-regexp' from variable `tcl-proc-list'."
  (setq tcl-proc-regexp
	(concat "^\\s-*" (regexp-opt tcl-proc-list t) "[ \t]+")))