Function: octave-send-block
octave-send-block is an interactive and byte-compiled function defined
in octave.el.gz.
Signature
(octave-send-block)
Documentation
Send current Octave block to the inferior Octave process.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/octave.el.gz
(defun octave-send-block ()
"Send current Octave block to the inferior Octave process."
(interactive)
(save-excursion
(octave-mark-block)
(octave-send-region (point) (mark))))