Function: tcl-reread-help-files

tcl-reread-help-files is an interactive and byte-compiled function defined in tcl.el.gz.

Signature

(tcl-reread-help-files)

Documentation

Set up to re-read files, and then do it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/tcl.el.gz
(defun tcl-reread-help-files ()
  "Set up to re-read files, and then do it."
  (interactive)
  (message "Building Tcl help file index...")
  (setq tcl-help-saved-dirs tcl-help-directory-list)
  (setq tcl-help-alist (tcl-help-snarf-commands tcl-help-directory-list))
  (message "Building Tcl help file index...done"))