From 28c32628480b89ec8c1fb8e5cf774700b78d9c6a Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Sun, 19 Jul 2009 11:06:44 -0600 Subject: [PATCH] fixed variable name in org-babel-R-evaluate --- lisp/langs/org-babel-R.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/langs/org-babel-R.el b/lisp/langs/org-babel-R.el index b401a4073..c2ca67936 100644 --- a/lisp/langs/org-babel-R.el +++ b/lisp/langs/org-babel-R.el @@ -92,7 +92,7 @@ called by `org-babel-execute-src-block' via multiple-value-bind." (defvar org-babel-R-wrapper-method "main <- function ()\n{\n%s\n} write.table(main(), file=\"%s\", sep=\"\\t\", na=\"nil\",row.names=FALSE, col.names=%s, quote=FALSE)") -(defun org-babel-R-evaluate (buffer body result-type colnames) +(defun org-babel-R-evaluate (buffer body result-type column-names-p) "Pass BODY to the R process in BUFFER. If RESULT-TYPE equals 'output then return a list of the outputs of the statements in BODY, if RESULT-TYPE equals 'value then return the value of the