> tusharhero--- via "General discussions about Org-mode."
> <[email protected]> writes:
>
>> This is because it doesn't quote it. Adding a simple quote fixes it.
>>
>> (defun org-babel-scheme-expand-header-arg-vars (vars)
>>     "Expand :var header arguments given as VARS."
>>     (mapconcat
>>      (lambda (var)
>>        (format "(define %S '%S)" (car var) (cdr var)))
>>      vars
>>      "\n"))
>
> Could you please show an example demonstrating what exactly is broken?
>
> --
> Ihor Radchenko // yantar92,
> Org mode maintainer,
> Learn more about Org mode at <https://orgmode.org/>.
> Support Org development at <https://liberapay.com/org-mode>,
> or support my work at <https://liberapay.com/yantar92>
>

Oops, I had this example ready, but forgot to share it.

#+NAME: test
| 1 | 2 | 3 | 4 | 5 |
|---+---+---+---+---|
| A | B | C | D | E |

#+begin_src scheme :var test=test
  test
#+end_src

#+RESULTS:



Reply via email to