Function: idlwave-shell-retall

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

Signature

(idlwave-shell-retall)

Documentation

Return from the entire calling stack.

Also get rid of widget events in the queue.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-retall ()
  "Return from the entire calling stack.
Also get rid of widget events in the queue."
  (interactive)
  (save-selected-window
    ;;if (widget_info(/MANAGED))[0] gt 0 then for i=0,n_elements(widget_info(/MANAGED))-1 do widget_control,(widget_info(/MANAGED))[i],/clear_events &
    (idlwave-shell-send-command "retall" nil
				(if (idlwave-shell-hide-p 'misc) 'mostly)
				nil t)
    (idlwave-shell-display-line nil)))