Function: idlwave-shell-set-bp-adjust

idlwave-shell-set-bp-adjust is a byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-set-bp-adjust BP &optional NO-SHOW)

Documentation

Find the breakpoint in IDL's internal list of breakpoints.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-set-bp-adjust (bp &optional no-show)
  "Find the breakpoint in IDL's internal list of breakpoints."
  (idlwave-shell-send-command
   idlwave-shell-bp-query
   `(progn
      (idlwave-shell-filter-bp 'no-show)
      (idlwave-shell-new-bp (quote ,bp))
      (unless (quote ,no-show)
	(idlwave-shell-update-bp-overlays)))
   'hide
   'preempt))