Function: idlwave-shell-redisplay

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

Signature

(idlwave-shell-redisplay &optional HIDE)

Documentation

Try to resync the display with where execution has stopped.

Issues a "help,/trace" command followed by a call to idlwave-shell-display-line. Also updates the breakpoint overlays.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
;; Debugging Commands ------------------------------------------------------

(defun idlwave-shell-redisplay (&optional hide)
  "Try to resync the display with where execution has stopped.
Issues a \"help,/trace\" command followed by a call to
`idlwave-shell-display-line'.  Also updates the breakpoint
overlays."
  (interactive)
  (setq idlwave-shell-calling-stack-index 0)
  (idlwave-shell-send-command
   "help,/trace"
   '(idlwave-shell-display-line
     (idlwave-shell-pc-frame))
   hide)
  (idlwave-shell-bp-query))