Function: lua-send-buffer

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

Signature

(lua-send-buffer)

Documentation

Send whole buffer to Lua process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defun lua-send-buffer ()
  "Send whole buffer to Lua process."
  (interactive)
  (lua-send-region (point-min) (point-max)))