On Thu, 22 Jan 2015, Sebastien Vauban wrote:
Hello,
May I bump up this thread?
Sebastien Vauban wrote:
In a long document, I must have ":eval no" at file level, as this is the
common setting for most code blocks. However, how do I unset that for
some call lines.
See (info "(org) Evaluating code blocks")
Note what it says about 'inside' and 'outside' header arguments. You need
*both* set to `:eval yes'.
The inside arg will allow execution of `plus' while the `outside' will
allow execution of call_plus(...).
Try this:
6 + 6 = call_plus[:eval yes](x=6)[:eval yes].
HTH,
Chuck