浏览代码

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

Thomas Dye 13 年之前
父节点
当前提交
bc9dc31465
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 ""))