Nick Dokos <ndo...@gmail.com> writes:

> Colin Baxter <m43...@yandex.com> writes:
>
>> Common Lisp in babel steems to have stopped working. With slime
>> running and (lisp . t) in my emacs init, I now get the error
>>
>> org-babel-execute:lisp: Cannot open load file: No such file or
>> directory, sly
>>
>> when I C-cc
>>
>> #+name: hello-world #+header: :var message="Hello World!" :exports
>> both #+begin_src lisp
>>   (princ message) #+end_src
>>
>> In the past, it worked. I thought either slime or sly were needed.
>>
>> I'm using org version release_8.3.4-718-g634e12.dirty and GNU Emacs
>> 25.1.50.1.
>
> commit d79835a821f24fdc32a0f46630f1b31c58fbbb4a introduced a new
> variable:
>
> ,----
> | org-babel-lisp-eval-fn is a variable defined in ‘ob-lisp.el’.  Its value
> | is "sly-eval"
> `----
>
> You can try setting it to "slime-eval", but it should probably default
> to "slime-eval".
>
> There is a typo in the documentation for this variable:
>
> "slime-val" -> "slime-eval".
>

Patch for the typo is attached.

--
Nick

>From 34d7e1f52008c303ae48fce88efacfbe21859b5a Mon Sep 17 00:00:00 2001
From: Nick Dokos <ndo...@redhat.com>
Date: Mon, 11 Apr 2016 15:05:35 -0400
Subject: [PATCH] Fix typo in doc string.

---
 lisp/ob-lisp.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/ob-lisp.el b/lisp/ob-lisp.el
index 0ed4d84..443a78d 100644
--- a/lisp/ob-lisp.el
+++ b/lisp/ob-lisp.el
@@ -40,7 +40,7 @@
 
 (defcustom org-babel-lisp-eval-fn "sly-eval"
   "The function to be called to evaluate code on the Lisp side.
-It can be set to either \"sly-eval\" or \"slime-val\"."
+It can be set to either \"sly-eval\" or \"slime-eval\"."
   :group 'org-babel
   :version "25.1"
   :package-version '(Org . "8.3")
-- 
2.7.0

Reply via email to