Function: idlwave-shell-shell-command
idlwave-shell-shell-command is a byte-compiled function defined in
idlw-shell.el.gz.
Signature
(idlwave-shell-shell-command)
Documentation
Return t if we're in a shell command statement like "$ls".
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-shell-command ()
"Return t if we're in a shell command statement like \"$ls\"."
(save-excursion
(idlwave-beginning-of-statement)
(looking-at "\\$")))