Function: idlwave-shell-step
idlwave-shell-step is an interactive and byte-compiled function
defined in idlw-shell.el.gz.
Signature
(idlwave-shell-step ARG)
Documentation
Step one source line.
If given prefix argument ARG, step ARG source lines.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-step (arg)
"Step one source line.
If given prefix argument ARG, step ARG source lines."
(interactive "p")
(or (not arg) (< arg 1)
(setq arg 1))
(idlwave-shell-stop-line-pending)
(idlwave-shell-send-command
(concat ".s " (if (integerp arg) (int-to-string arg) arg))
nil (if (idlwave-shell-hide-p 'debug) 'mostly) nil t))