Function: idlwave-shell-save-and-batch

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

Signature

(idlwave-shell-save-and-batch)

Documentation

Save file and batch it in IDL.

Runs save-buffer and sends a '@file' command for the associated file to IDL. When called from the shell buffer, re-batch 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-batch ()
  "Save file and batch it in IDL.
Runs `save-buffer' and sends a '@file' command for the associated file to IDL.
When called from the shell buffer, re-batch the file which was last handled by
one of the save-and-.. commands."
  (interactive)
  (idlwave-shell-save-and-action 'batch))