1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-25 07:27:57 +00:00

* lisp/ob-R.el: Handle quoted string values to device header arguments

This commit is contained in:
Thomas Dye 2012-06-18 17:26:09 -10:00 committed by Eric Schulte
parent fca0169147
commit bc9dc31465

View File

@ -260,7 +260,7 @@ current code buffer."
(setq args (mapconcat
(lambda (pair)
(if (member (car pair) allowed-args)
(format ",%s=%s"
(format ",%s=%S"
(substring (symbol-name (car pair)) 1)
(cdr pair)) ""))
params ""))