DONE subtree execution can't find blocks in other sub-trees
- State "DONE" from "TODO"
- State "TODO" from ""
This is most likely due to the fact that `org-babel-execute-subtree' calls `org-narrow-to-subtree', which narrows the buffer making functions defined in other sub-trees invisible. This is demonstrated by calling `org-babel-execute-subtree' (bound to C-c M-b s) inside of "tree 2" below.
Thanks to Tom Dye for pointing this out.
example
tree 1
a <- 1
tree 2
a <- 1
a + 1
a + 2