babel: R: Fix bug in treatment of :file argument

* ob-R.el (org-babel-expand-body:R): Fix bug in let binding.

This was preventing graphical output from being captured.
This commit is contained in:
Dan Davison 2010-10-21 23:29:43 +01:00
parent b0fae37687
commit d8634bab85
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
(defun org-babel-expand-body:R (body params)
"Expand BODY according to PARAMS, return the expanded body."
(let (out-file (cdr (assoc :file params)))
(let ((out-file (cdr (assoc :file params))))
(mapconcat
#'identity
((lambda (inside)