Function: idlwave-shell-command-failure

idlwave-shell-command-failure is a byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-command-failure)

Documentation

Do any necessary clean up when an IDL command fails.

Call this from a function attached to idlwave-shell-post-command-hook that detects the failure of a command. For example, this is called from idlwave-shell-set-bp-check when a breakpoint can not be set.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-command-failure ()
  "Do any necessary clean up when an IDL command fails.
Call this from a function attached to `idlwave-shell-post-command-hook'
that detects the failure of a command.
For example, this is called from `idlwave-shell-set-bp-check' when a
breakpoint can not be set."
  ;; Clear pending commands
  (setq idlwave-shell-pending-commands nil))