Function: idlwave-shell-find-current-bp

idlwave-shell-find-current-bp is a byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-find-current-bp)

Documentation

Find breakpoint here, or at halt location.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-find-current-bp ()
  "Find breakpoint here, or at halt location."
  (let ((bp (idlwave-shell-find-bp (idlwave-shell-current-frame))))
    (when (not bp)
      ;; Try moving to beginning of halted-at statement
      (save-excursion
	(idlwave-shell-goto-frame)
	(idlwave-beginning-of-statement)
	(setq bp (idlwave-shell-find-bp (idlwave-shell-current-frame))))
      (unless bp
	(beep)
	(message "Cannot identify breakpoint for this line")))
    bp))