Re: [O] Code block option :results raw does not replace #+RESULTS

2014-02-01 Thread Soapy Smith
On Fri, 2014-01-31 at 18:16 -0500, Nick Dokos wrote: Is this the expected behavior for this option? Yes - raw does not keep track of where the results begin and end and cannot erase the old ones before adding the new ones. Try calling org-babel-remove-result: you'll see that it gets rid

[O] Code block option :results raw does not replace #+RESULTS

2014-01-31 Thread Soapy Smith
Hello- Here is an example Python code block: #+begin_src python :results value raw a = (1, 2, 3, 4) return a #+end_src #+RESULTS: (1, 2, 3, 4) (1, 2, 3, 4) The #+RESULT block above is after 2 evaluations. The default behavior of replace is not happening. The result stack will continue to

Re: [O] Code block option :results raw does not replace #+RESULTS

2014-01-31 Thread John Hendy
On Fri, Jan 31, 2014 at 3:45 PM, Soapy Smith soapy-sm...@comcast.net wrote: Hello- Here is an example Python code block: #+begin_src python :results value raw a = (1, 2, 3, 4) return a #+end_src #+RESULTS: (1, 2, 3, 4) (1, 2, 3, 4) The #+RESULT block above is after 2 evaluations.

Re: [O] Code block option :results raw does not replace #+RESULTS

2014-01-31 Thread Nick Dokos
Soapy Smith soapy-sm...@comcast.net writes: Hello- Here is an example Python code block: #+begin_src python :results value raw a = (1, 2, 3, 4) return a #+end_src #+RESULTS: (1, 2, 3, 4) (1, 2, 3, 4) The #+RESULT block above is after 2 evaluations. The default behavior of replace