Hi all, I think there is a bug in babel concerning inline source block calls.
Suppose, I have a source block that generates a file: #+name: someplot #+begin_src R :results graphics :file someplot.pdf :var somemax=10 plot(1:somemax) #+end_src #+results: someplot [[file:someplot.pdf]] I am trying to set the file name when I call this source block: Like in this file: call_someplot[:results graphics :file somebiggerplot.pdf]()[:results file] where I still get the "someplot.pdf" as result. Note, that it functions as expected on non-inline call lines: #+call: someplot[:results graphics :file somebiggerplot.pdf]() :results file #+results: someplot[:results graphics :file somebiggerplot.pdf]() [[file:somebiggerplot.pdf]]