Function: idlwave-shell-stepover

idlwave-shell-stepover is an interactive and byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-stepover ARG)

Documentation

Stepover one source line.

If given prefix argument ARG, step ARG source lines. Uses IDL's stepover executive command which does not enter called functions.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-stepover (arg)
  "Stepover one source line.
If given prefix argument ARG, step ARG source lines.
Uses IDL's stepover executive command which does not enter called functions."
  (interactive "p")
  (or (not arg) (< arg 1)
      (setq arg 1))
  (idlwave-shell-stop-line-pending)
  (idlwave-shell-send-command
   (concat ".so " (if (integerp arg) (int-to-string arg) arg))
   nil (if (idlwave-shell-hide-p 'debug) 'mostly) nil t))