Eric-
Since you're looking at call lines :)...
there is a (fairly new i think) bug:
When searching forward for results, following call lines are not
being respected as stop points. For instance, given:
#+BEGIN_SRC org
,* Call block test
,#+name: call-me
,#+BEGIN_SRC emacs-lisp :var v="one"
v
,#+END_SRC
,#+RESULTS: call-me
: one
,#+call: call-me(v="two")
,#+RESULTS:
: two
#+END_SRC
If i insert a new call-block before "two" and execute it, the following
occurs
#+BEGIN_SRC org
,* Call block test
,#+name: call-me
,#+BEGIN_SRC emacs-lisp :var v="one"
v
,#+END_SRC
,#+RESULTS: call-me
: one
,#+call: call-me(v="three")
,#+call: call-me(v="two")
,#+RESULTS:
: three
#+END_SRC
as you can see, it replaced the results for call-line two.
Note that if i had named "two" and executed it before adding in call
line "three", the results would be
ok:
#+BEGIN_SRC org
,* Call block test
,#+name: call-me
,#+BEGIN_SRC emacs-lisp :var v="one"
v
,#+END_SRC
,#+RESULTS: call-me
: one
,#+call: call-me(v="three")
,#+RESULTS:
: three
,#+name: two
,#+call: call-me(v="two")
,#+RESULTS: two
: two
#+END_SRC
rick