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
>
>
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