summaryrefslogtreecommitdiff
path: root/lisp/org/ob-lua.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/org/ob-lua.el')
-rw-r--r--lisp/org/ob-lua.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org/ob-lua.el b/lisp/org/ob-lua.el
index 6ae72c7e565..7750afdffcb 100644
--- a/lisp/org/ob-lua.el
+++ b/lisp/org/ob-lua.el
@@ -290,10 +290,10 @@ string. If RESULT-TYPE equals 'value then return the value of the
last statement in BODY, as elisp."
(let ((raw
(pcase result-type
- (`output (org-babel-eval org-babel-lua-command
+ ('output (org-babel-eval org-babel-lua-command
(concat (if preamble (concat preamble "\n"))
body)))
- (`value (let ((tmp-file (org-babel-temp-file "lua-")))
+ ('value (let ((tmp-file (org-babel-temp-file "lua-")))
(org-babel-eval
org-babel-lua-command
(concat
@@ -364,7 +364,7 @@ fd:close()"
(funcall send-wait)))
(results
(pcase result-type
- (`output
+ ('output
(mapconcat
#'org-trim
(butlast
@@ -375,7 +375,7 @@ fd:close()"
(insert org-babel-lua-eoe-indicator)
(funcall send-wait))
2) "\n"))
- (`value
+ ('value
(let ((tmp-file (org-babel-temp-file "lua-")))
(org-babel-comint-with-output
(session org-babel-lua-eoe-indicator nil body)