Function: idlwave-shell-quit
idlwave-shell-quit is an interactive and byte-compiled function
defined in idlw-shell.el.gz.
Signature
(idlwave-shell-quit &optional ARG)
Documentation
Exit the IDL process after confirmation.
With prefix ARG, exit without confirmation.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-quit (&optional arg)
"Exit the IDL process after confirmation.
With prefix ARG, exit without confirmation."
(interactive "P")
(if (not (idlwave-shell-is-running))
(error "Shell is not running")
(if (or arg (y-or-n-p "Exit the IDLWAVE Shell? "))
(condition-case nil
(idlwave-shell-send-command "exit")
(error nil)))))