summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstardiviner <numbchild@gmail.com>2018-02-14 18:22:45 +0800
committerstardiviner <numbchild@gmail.com>2018-02-14 18:22:45 +0800
commit2e6922191e82546ec47b07a1272597e196e16e93 (patch)
tree92809ad002012cb99082b277ca112e0d33841cf2
parent90607d1d18b6358fd1854ae91e3fb4466a4adf7b (diff)
downloadorg-mode-2e6922191e82546ec47b07a1272597e196e16e93.tar.gz
* ob-lua.el: remove it.
original ob-lua exists already.
-rw-r--r--contrib/lisp/ob-lua.el45
1 files changed, 0 insertions, 45 deletions
diff --git a/contrib/lisp/ob-lua.el b/contrib/lisp/ob-lua.el
deleted file mode 100644
index f33090e..0000000
--- a/contrib/lisp/ob-lua.el
+++ /dev/null
@@ -1,45 +0,0 @@
-;;; ob-lua.el --- Execute Lua code within org-mode blocks.
-;; Copyright 2016 stardiviner
-
-;; Author: stardiviner <numbchild@gmail.com>
-;; Maintainer: stardiviner <numbchild@gmail.com>
-;; Keywords: org babel lua
-;; URL: https://github.com/stardiviner/ob-lua
-;; Created: 12th April 2016
-;; Version: 0.0.1
-;; Package-Requires: ((org "8"))
-
-;;; Commentary:
-;;
-;; Execute Lua code within org-mode blocks.
-
-;;; Code:
-(require 'org)
-(require 'ob)
-
-(defgroup ob-lua nil
- "org-mode blocks for Lua."
- :group 'org)
-
-(defcustom ob-lua:default-session "*lua*"
- "Default Lua session.
-
-It is lua inferior process from `run-lua'."
- :group 'ob-lua
- :type 'string)
-
-;;;###autoload
-(defun org-babel-execute:lua (body params)
- "org-babel lua hook."
- (let* ((session (or (cdr (assoc :session params))
- ob-lua:default-session))
- (cmd (mapconcat 'identity (list "lua -") " ")))
- (org-babel-eval cmd body)))
-
-;;;###autoload
-(eval-after-load "org"
- '(add-to-list 'org-src-lang-modes '("lua" . lua)))
-
-(provide 'ob-lua)
-
-;;; ob-lua.el ends here