From 0a109680eefffe696093bbf2725c2af6ac437284 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Mon, 5 Jul 2010 10:10:11 -0700 Subject: [PATCH] fixed list nesting error in ob-R.el --- lisp/ob-R.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-R.el b/lisp/ob-R.el index b914de674..8403483b4 100644 --- a/lisp/ob-R.el +++ b/lisp/ob-R.el @@ -66,7 +66,7 @@ ((lambda (inside) (if out-file (append - (org-babel-R-construct-graphics-device-call out-file params) + (list (org-babel-R-construct-graphics-device-call out-file params)) inside (list "dev.off()")) inside)) -- 2.11.4.GIT