diff options
Diffstat (limited to 'lisp/org/ob-lisp.el')
-rw-r--r-- | lisp/org/ob-lisp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/ob-lisp.el b/lisp/org/ob-lisp.el index b846138f7a3..8fc691ed616 100644 --- a/lisp/org/ob-lisp.el +++ b/lisp/org/ob-lisp.el @@ -87,8 +87,8 @@ current directory string." BODY is the contents of the block, as a string. PARAMS is a property list containing the parameters of the block." (require (pcase org-babel-lisp-eval-fn - (`slime-eval 'slime) - (`sly-eval 'sly))) + ('slime-eval 'slime) + ('sly-eval 'sly))) (org-babel-reassemble-table (let ((result (funcall (if (member "output" (cdr (assq :result-params params))) |