From d48ec0884bf24834daa227c0b1d99f1c8ac1c831 Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Thu, 23 Jul 2009 22:12:09 -0400 Subject: [PATCH] Simplify example that is breaking parser. --- org-babel.org | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/org-babel.org b/org-babel.org index 1fe7e6354..7d69336ba 100644 --- a/org-babel.org +++ b/org-babel.org @@ -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()