Re: [O] [BUG] error if arg to #+call: contains a comma

2011-12-12 Thread Eric Schulte
Hi Myles, Thanks for reporting this issue, I just pushed up a fix and a protecting test case. Best, mylesengl...@gmail.com writes: > Hello, > > There may be a problem with parsing arguments to the #+call > function: > > #+name: A > #+begin_src sh :var a="this, works" > echo "$a" > #+end_src > >

[O] [BUG] error if arg to #+call: contains a comma

2011-12-12 Thread mylesenglish
Hello, There may be a problem with parsing arguments to the #+call function: #+name: A #+begin_src sh :var a="this, works" echo "$a" #+end_src #+results: A | this | works | #+call: A() #+results: A() | this | works | #+call: A(a="this also works") #+results: A(a="this also works") : this al