Re: [O] lisp babel

2016-04-12 Thread Nicolas Goaziou
Hello, "Thomas S. Dye" writes: > I agree with Nick. The default should be "slime-eval" so existing > setups and work-flows aren't broken. I didn't notice the patch changed the default value. This is now fixed. Thank you. Regards, -- Nicolas Goaziou

Re: [O] lisp babel

2016-04-12 Thread Nicolas Goaziou
Hello, Nick Dokos writes: > Patch for the typo is attached. Applied. Thank you. Regards, -- Nicolas Goaziou

Re: [O] lisp babel

2016-04-12 Thread Colin Baxter
Nick Dokos gmail.com> writes: > > Nick Dokos gmail.com> writes: > > > Colin Baxter 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

Re: [O] lisp babel

2016-04-12 Thread Thomas S. Dye
Nick Dokos writes: > To change the default evaluator back to slime, add > > (setq org-babel-lisp-eval-fn "slime-eval") > > to your init file somewhere. > > The patch only fixes the typo in the documentation; it does not change > the default evaluator back to slime. Although I would probably vote t

Re: [O] lisp babel

2016-04-12 Thread Nick Dokos
Colin Baxter writes: > Nick Dokos gmail.com> writes: > >> >> Nick Dokos gmail.com> writes: >> >> > Colin Baxter 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-ba

Re: [O] lisp babel

2016-04-11 Thread Nick Dokos
Nick Dokos writes: > Colin Baxter 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: he

Re: [O] lisp babel

2016-04-11 Thread John Kitchin
Maybe a new default has been setup? I recall a recent discussion about sly. Maybe try setting this to your lisp? (setq inferior-lisp-program "/usr/local/bin/sbcl") I am not sure if you also need this: (require 'slime) (slime-setup) (slime) I only have a little experience with other lisps. Coli

Re: [O] lisp babel

2016-04-11 Thread Nick Dokos
Colin Baxter 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=

[O] lisp babel

2016-04-11 Thread Colin Baxter
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_s