Neil Jerram writes: > But if I want the table output > > | 1 | 2 | 3 | > > will there still be a way to get it? (I'm sure I have org files that > need this!) This patch will not affect any of your existing org files unless you have specified you want the block to output as 'verbatim', 'scalar' or otherwise. For all org source blocks the default is to process the output as a table if it is in a suitable format, so the following would still occur: #+BEGIN_SRC scheme (list 1 2 3) #+END_SRC #+RESULTS: | 1 | 2 | 3 | Additionally, you can always specify the output be processed as a table by specifying it in the ':results' header argument. #+BEGIN_SRC scheme :results table (list 1 2 3) #+END_SRC #+RESULTS: | 1 | 2 | 3 | The other defined options for result formatting can be found here https://orgmode.org/manual/results.html.