Re: [O] org-babel-script-escape problem

2017-09-14 Thread Nicolas Goaziou
Hello,

Lawrence Bottorff  writes:

> In a fresh org file I try this:
>
> #+begin_src scheme :session mainsession
> (define (mysquare x)
>   (* x x))
> #+end_src
>
> and get this:
>
> executing Scheme code block...
> => #
> : ‘org-babel-script-escape’ expects a string

It now prints:

  : #

Please let me know if that fixes the problem on your side.

Thank you.

Regards,

-- 
Nicolas Goaziou



[O] org-babel-script-escape problem

2017-09-14 Thread Lawrence Bottorff
In a fresh org file I try this:

#+begin_src scheme :session mainsession
(define (mysquare x)
  (* x x))
#+end_src

and get this:

executing Scheme code block...
=> #
: ‘org-babel-script-escape’ expects a string

I'm using latest elpa everything (orgmode, geiser) with Racket v6.10.1 as
of this morning. Just started happening. . . .

LB