Function: idlwave-shell-update-bp
idlwave-shell-update-bp is a byte-compiled function defined in
idlw-shell.el.gz.
Signature
(idlwave-shell-update-bp BP &optional COMMAND-ONLY)
Documentation
Update BP data in breakpoint list.
If BP frame is in idlwave-shell-bp-alist updates the breakpoint data.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-update-bp (bp &optional command-only)
"Update BP data in breakpoint list.
If BP frame is in `idlwave-shell-bp-alist' updates the breakpoint data."
(let ((match (assoc (car bp) idlwave-shell-bp-alist)))
(if match
(if command-only
(setf (nth 1 (cdr (cdr match))) (nth 1 (cdr (cdr match))))
(setcdr (cdr match) (cdr (cdr bp)))))))