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