Function: idlwave-shell-evaluate-region
idlwave-shell-evaluate-region is an interactive and byte-compiled
function defined in idlw-shell.el.gz.
Signature
(idlwave-shell-evaluate-region BEG END &optional N)
Documentation
Send region to the IDL process.
If there is a prefix argument, display IDL process.
Does not work for a region with multiline blocks - use
idlwave-shell-run-region for this.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-evaluate-region (beg end &optional n)
"Send region to the IDL process.
If there is a prefix argument, display IDL process.
Does not work for a region with multiline blocks - use
`idlwave-shell-run-region' for this."
(interactive "r\nP")
(idlwave-shell-send-command (buffer-substring beg end))
(if n
(idlwave-display-buffer (idlwave-shell-buffer)
nil (idlwave-shell-shell-frame))))