[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Avoid "Scheme implementation" prompt on export
From: |
Bruno Barbier |
Subject: |
Re: Avoid "Scheme implementation" prompt on export |
Date: |
Wed, 16 Oct 2024 11:41:38 +0200 |
Roi Martin <jroi.martin@gmail.com> writes:
> Bruno Barbier <brubar.cs@gmail.com> writes:
>
>> My patch fixes a real bug though. Are you sure org is using the correct
>> scheme implementation when doing "C-c C-c" ?
> I think it works fine if you set the `org-babel-load-languages' variable
> in the elisp code block:
>
> (org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp
> . t)
> (scheme .
> t)))
>
ok. I simplified:
(load-library "ob-scheme")
into:
(org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp . t)
(scheme . t))
:)
>> I just checked exporting my example to html: it works for me.
>
> Have you tried with the htmlize package installed?
>
> (package-install 'htmlize)
>
Nope. Everything was included in my minimal reproducible example and
htmlize was not there. And I didn't use the GNU nongnu repo either.
Using htmlize *AND* the nongnu version, I'm indeed able to reproduce.
The HTML fontification is launching REPLs, and *may* prompts
for the implementation to use. I'm able to work around this with this
setting:
(setq geiser-mode-auto-p nil)
I'm not sure what the real solution should be though.
And thanks for your test file! (probably impossible to spot the melpa vs
nongnu difference without it).
Bruno
- Re: Avoid "Scheme implementation" prompt on export, (continued)