Tobias Zawada writes: > Currently, evaluating the Org-mode source block > > #+NAME: bug > #+BEGIN_SRC octave :exports results > ["one"; "two"; "three"] > #+END_SRC > > gives > > #+RESULTS: bug > : ottnwheor e e > > Substituting ~fprintf~ in ~org-babel-octave-wrapper-method~ with ~fdisp~ changes the output to > > #+NAME: bug > #+BEGIN_SRC octave :exports results > ["one"; "two"; "three"] > #+END_SRC > > #+RESULTS: bug > | one | > | two | > | three | > > which is more adequate. Thanks for reporting, and sorry for the late reply. Your suggestion looks fine, although I am a bit concerned if the trailing newline in the old version was significant. Can you please test the attached patch when the output long and occupies multiple lines? (I am not familiar with octave) Best, Ihor