瀏覽代碼

lisp/ob-lua.el: Small indentation fix

* lisp/ob-lua.el (org-babel-lua-evaluate)
(org-babel-lua-evaluate-external-process): Fix indentation.
Bastien 8 年之前
父節點
當前提交
e010215e82
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lisp/ob-lua.el

+ 2 - 2
lisp/ob-lua.el

@@ -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