Re: [O] Scheme babel error

2016-08-31 Thread Nick Dokos
Lawrence Bottorff writes: > Actually, I found that thread > (https://lists.gnu.org/archive/html/emacs-orgmode/2015-09/msg00390.html) and > looked thrugh it (not as good as "looking through" it), but didn't make the > connection that it was because of the boolean -- again. What threw me was how

Re: [O] Scheme babel error

2016-08-30 Thread Lawrence Bottorff
Actually, I found that thread ( https://lists.gnu.org/archive/html/emacs-orgmode/2015-09/msg00390.html) and looked thrugh it (not as good as "looking through" it), but didn't make the connection that it was because of the boolean -- again. What threw me was how this time it seemed to just be a sour

Re: [O] Scheme babel error

2016-08-30 Thread Nick Dokos
Lawrence Bottorff writes: > I'm using Racket with Geiser and I get this error: > > executing Scheme code block... > => #f > org-babel-scheme-execute-with-geiser: Invalid read syntax: "#" > > when in an org-mode file this code > > #+begin_src scheme :exports both :session ch3 > (define (bool-imply

[O] Scheme babel error

2016-08-30 Thread Lawrence Bottorff
I'm using Racket with Geiser and I get this error: executing Scheme code block... => #f org-babel-scheme-execute-with-geiser: Invalid read syntax: "#" when in an org-mode file this code #+begin_src scheme :exports both :session ch3 (define (bool-imply2 x y) (or (not x) y)) #+end_src is run (C