0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-20 06:10:20 +00:00

Simplify example that is breaking parser.

This commit is contained in:
Dan Davison 2009-07-23 22:12:09 -04:00
parent 4e3c32d7d6
commit d48ec0884b

View file

@ -2800,11 +2800,12 @@ arg
**** TODO Nesting problem II
This generates parsing errors
#+srcname: deeply-nested-args-bug-II()
#+begin_src python :var arg=adder(a=adder(a=one(),b=one()),b=adder(a=one(),b=adder(a=1,b=4)))
#+srcname: deeply-nested-args-bug-II-1()
#+begin_src python :var arg=adder(a=adder(a=one(),b=adder(a=1,b=4)))
arg
#+end_src
**** DONE Why does this give 8?
It was picking up the wrong definition of adder
#+srcname: deeply-nested-args-bug-2()