Hello you can tweek the default behaviour using org-babel-default-header-args:org variable My default configuration for org is the following. I did not modify it. org-babel-default-header-args:org is a variable defined in ‘ob-org.el’. Its value is ((:results . "raw silent") (:exports . "code")) Best regards Jeremie On Mon, Mar 13, 2017 at 4:30 PM, Jarmo Hurri wrote: > > Greetings. > > An old org-code of mine stopped working, and while trying to fix it I > bumped into the following. What am I missing here? > > Jarmo > > * test > A simple code block. > #+name: org-block > #+BEGIN_SRC org > | foo | bar | > |-----+-----| > | 1 | 2 | > #+END_SRC > > A silent call produces no results as expected. > #+call: org-block() :results silent > > This produces results as expected. > #+call: org-block() :results replace > > #+RESULTS: > | foo | bar | > |-----+-----| > | 1 | 2 | > > But this also behaves like silent, while the manual says that the > default is "replace." > #+call: org-block() > > > -- Jérémie Juste