Function: idlwave-shell-clear-current-bp

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

Signature

(idlwave-shell-clear-current-bp)

Documentation

Remove breakpoint at current line.

This command can be called from the shell buffer if IDL is currently stopped at a breakpoint.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-clear-current-bp ()
  "Remove breakpoint at current line.
This command can be called from the shell buffer if IDL is currently
stopped at a breakpoint."
  (interactive)
  (let ((bp (idlwave-shell-find-current-bp)))
    (if bp (idlwave-shell-clear-bp bp))))