Function: idlwave-shell-clear-all-bp

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

Signature

(idlwave-shell-clear-all-bp)

Documentation

Remove all breakpoints in IDL.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-clear-all-bp ()
  "Remove all breakpoints in IDL."
  (interactive)
  (idlwave-shell-send-command
   idlwave-shell-bp-query
   '(progn
      (idlwave-shell-filter-bp)
      (mapcar (lambda (x) (idlwave-shell-clear-bp x 'no-query))
	      idlwave-shell-bp-alist)
      (idlwave-shell-bp-query))
   'hide))