Browse Source

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

Thomas Dye 13 years ago
parent
commit
bc9dc31465
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/ob-R.el

+ 1 - 1
lisp/ob-R.el

@@ -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 ""))