Hi all, I attach a patch to change from this behavior: #+begin_src ruby :session :results output s = "1" s = "2" s = "3" puts s #+end_src #+RESULTS: : => "1" : => "2" : => "3" : 3 To this behavior #+begin_src ruby :session :results output s = "1" s = "2" s = "3" puts s #+end_src #+RESULTS: : : 3 I just wrap the code in "conf.echo=false\n" and "\nconf.echo=true\n". I have to set it back to true, otherwise it hangs. regards, Oleh