ob-dot.el: Substitute variables literally

* lisp/ob-dot.el (org-babel-expand-body:dot): Do not change the case
nor interpret '\' when substituting block variables.
This commit is contained in:
Alan Schmitt 2014-03-27 13:35:31 +01:00 committed by Bastien Guerry
parent f86b6d8aa3
commit ca2763280d
1 changed files with 3 additions and 1 deletions

View File

@ -55,7 +55,9 @@
(replace-regexp-in-string
(concat "\$" (regexp-quote name))
(if (stringp value) value (format "%S" value))
body))))
body
t
t))))
vars)
body))