Function: idlwave-shell-module-source-query

idlwave-shell-module-source-query is a byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-module-source-query MODULE &optional TYPE)

Documentation

Determine the source file for a given module.

Query as a function if TYPE set to something beside pro.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-module-source-query (module &optional type)
  "Determine the source file for a given module.
Query as a function if TYPE set to something beside `pro'."
  (if module
      (idlwave-shell-send-command
       (format "print,(routine_info('%s',/SOURCE%s)).PATH" module
	       (if (eq type 'pro) "" ",/FUNCTIONS"))
       `(idlwave-shell-module-source-filter ,module)
       'hide 'wait)))