ob-sqlite: now inserts string arguments w/o quotes
* lisp/ob-sqlite.el (org-babel-sqlite-expand-vars): now inserts string arguments w/o quotes
This commit is contained in:
parent
24bb01afc8
commit
4d318e4499
|
@ -118,7 +118,7 @@ This function is called by `org-babel-execute-src-block'."
|
|||
(format "%S" el)))))))
|
||||
data-file)
|
||||
(make-temp-file "ob-sqlite-data"))
|
||||
(format "%S" val)))
|
||||
(if (stringp val) val (format "%S" val))))
|
||||
(cdr pair))
|
||||
body)))
|
||||
vars)
|
||||
|
|
Loading…
Reference in New Issue