lisp/ob-lua.el: Small indentation fix

* lisp/ob-lua.el (org-babel-lua-evaluate)
(org-babel-lua-evaluate-external-process): Fix indentation.
This commit is contained in:
Bastien 2016-11-01 21:39:11 +01:00
parent e8fe974ab8
commit e010215e82
1 changed files with 2 additions and 2 deletions

View File

@ -274,7 +274,7 @@ fd:write(t2s(main()))
fd:close()")
(defun org-babel-lua-evaluate
(session body &optional result-type result-params preamble)
(session body &optional result-type result-params preamble)
"Evaluate BODY as Lua code."
(if session
(org-babel-lua-evaluate-session
@ -283,7 +283,7 @@ fd:close()")
body result-type result-params preamble)))
(defun org-babel-lua-evaluate-external-process
(body &optional result-type result-params preamble)
(body &optional result-type result-params preamble)
"Evaluate BODY in external lua process.
If RESULT-TYPE equals 'output then return standard output as a
string. If RESULT-TYPE equals 'value then return the value of the