ソースを参照

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