Function: tcl-help-snarf-commands

tcl-help-snarf-commands is a byte-compiled function defined in tcl.el.gz.

Signature

(tcl-help-snarf-commands DIRLIST)

Documentation

Return alist of commands and filenames.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/tcl.el.gz
(defun tcl-help-snarf-commands (dirlist)
  "Return alist of commands and filenames."
  (let ((alist nil))
    (dolist (dir dirlist alist)
      (when (file-directory-p dir)
	(setq alist (tcl-files-alist dir alist))))))