Function: idlwave-shell-executive-command
idlwave-shell-executive-command is a byte-compiled function defined in
idlw-shell.el.gz.
Signature
(idlwave-shell-executive-command)
Documentation
Return the name of the current executive command, if any.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-executive-command ()
"Return the name of the current executive command, if any."
(save-excursion
(idlwave-beginning-of-statement)
(cons (looking-at "[ \t]*\\.")
(if (looking-at "[ \t]*[.]\\([^ \t\n\r]+\\)[ \t]")
(match-string 1)))))