Function: idlwave-shell-save-and-compile
idlwave-shell-save-and-compile is an interactive and byte-compiled
function defined in idlw-shell.el.gz.
Signature
(idlwave-shell-save-and-compile)
Documentation
Save file and run it in IDL.
Runs save-buffer and sends '.COMPILE' command for the associated file to IDL.
When called from the shell buffer, re-compile the file which was last handled by
one of the save-and-.. commands.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-save-and-compile ()
"Save file and run it in IDL.
Runs `save-buffer' and sends '.COMPILE' command for the associated file to IDL.
When called from the shell buffer, re-compile the file which was last handled by
one of the save-and-.. commands."
(interactive)
(idlwave-shell-save-and-action 'compile))