babel: Fix unquoting of strings
commita95c05773e503cc8f420ab3ce41bc71c480c263d
authorDan Davison <davison@stats.ox.ac.uk>
Fri, 19 Feb 2010 16:34:16 +0000 (19 11:34 -0500)
committerDan Davison <davison@stats.ox.ac.uk>
Thu, 25 Feb 2010 22:58:45 +0000 (25 17:58 -0500)
treef3528ea10c391f14341bed9ced7fe3a56c480d0b
parent6f62066ac67d37d77e06f3f0a1b43a79ea8aec9c
babel: Fix unquoting of strings

Before this change we have

 #+begin_src ruby :results value :session
 ["1", "3"]
 #+end_src

 #+results:
 : 1", "3

 After, we have

 #+begin_src ruby :results value :session
 ["1", "3"]
 #+end_src

 #+results:
 | 1 | 3 |
contrib/babel/lisp/langs/org-babel-haskell.el
contrib/babel/lisp/langs/org-babel-python.el
contrib/babel/lisp/langs/org-babel-ruby.el