Re: Using Org and eev together - problem with source blocks

2019-11-11 Thread Eduardo Ochs
Perfect! I've added several mentions to ":results output" to the tutorial: http://angg.twu.net/eev-intros/find-org-intro.html Thanks a lot! =) Eduardo http://angg.twu.net/#eev On Sun, 10 Nov 2019 at 14:13, Ken Mankoff wrote: > > On 2019-11-10 at 15:36 +01, Eduardo Ochs wrote... > >

Re: Using Org and eev together - problem with source blocks

2019-11-10 Thread Ken Mankoff
On 2019-11-10 at 15:36 +01, Eduardo Ochs wrote... > Changing the Python source block to > > #+BEGIN_SRC python :output results > > Are you sure that you wrote it correctly? I'm pretty sure I did not. Try ":results output" -k.

Re: Using Org and eev together - problem with source blocks

2019-11-10 Thread Eduardo Ochs
Changing the Python source block to #+BEGIN_SRC python :output results def square (x): return x*x print(square(5)) #+END_SRC didn't change anything here, neither with emacs24 nor with git emacs, and I grepped (recursively) for ":output" in the directory where I cloned

Re: Using Org and eev together - problem with source blocks

2019-11-10 Thread Ken Mankoff
On 2019-11-10 at 02:54 +01, Eduardo Ochs wrote... > #+BEGIN_SRC python > def square (x): > return x*x > > print(square(5)) > #+END_SRC > > [...] when I run the Python block with C-c C-c I always get a results > block like this (without the indentation): > > #+RESULTS: > : None > > What