Function: lua-kill-process

lua-kill-process is an interactive and byte-compiled function defined in lua-mode.el.gz.

Signature

(lua-kill-process)

Documentation

Kill Lua process and its buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defun lua-kill-process ()
  "Kill Lua process and its buffer."
  (interactive)
  (when (buffer-live-p lua-process-buffer)
    (kill-buffer lua-process-buffer)
    (setq lua-process-buffer nil)))