瀏覽代碼

Simplify example that is breaking parser.

Dan Davison 16 年之前
父節點
當前提交
d48ec0884b
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      org-babel.org

+ 3 - 2
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()