Function: lua-send-current-line

lua-send-current-line is an interactive and byte-compiled function defined in lua-mode.el.gz.

Signature

(lua-send-current-line)

Documentation

Send current line to the Lua process, found in lua-process.

If lua-process is nil or dead, start a new process first.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defun lua-send-current-line ()
  "Send current line to the Lua process, found in `lua-process'.
If `lua-process' is nil or dead, start a new process first."
  (interactive)
  (lua-send-region (line-beginning-position) (line-end-position)))