Roi Martin <jroi.mar...@gmail.com> writes:
> Bruno Barbier <brubar...@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