Function: idlwave-shell-clear-bp
idlwave-shell-clear-bp is a byte-compiled function defined in
idlw-shell.el.gz.
Signature
(idlwave-shell-clear-bp BP &optional NO-QUERY)
Documentation
Clear breakpoint BP.
Clears in IDL and in idlwave-shell-bp-alist.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-clear-bp (bp &optional no-query)
"Clear breakpoint BP.
Clears in IDL and in `idlwave-shell-bp-alist'."
(let ((index (idlwave-shell-bp-get bp)))
(if index
(progn
(idlwave-shell-send-command
(concat "breakpoint,/clear," (int-to-string index))
nil (idlwave-shell-hide-p 'breakpoint) nil t)
(unless no-query (idlwave-shell-bp-query))))))