Hi all, I am being unable to make nested calls work. Here is a minimal snippet:
--8<---------------cut here---------------start------------->8--- #+NAME: foo #+BEGIN_SRC emacs-lisp "foo" #+END_SRC #+NAME: bar #+CALL: foo() #+RESULTS: bar : foo #+CALL: bar() #+RESULTS: : nil --8<---------------cut here---------------end--------------->8--- Why does the last call (to bar) return nil instead of the result of bar (which is "foo")? Actually, if I remove foo altogether, executing "bar" block gives an error, but executing the last call to "bar" still works (and still returns nil). Are nested calls supported at all? Thanks, Carlos -- Carlos