From c8bfd52f5f5329ad514fa6aef6ec283e3c7a233b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 19 May 2015 23:22:11 +0200 Subject: [PATCH] ob-R: Allow more :results values * lisp/ob-R.el (org-babel-header-args:R): Allow "drawer" and "none", since they are supported in `org-babel-common-header-args-w-values'. Reported-by: Andreas Leha --- lisp/ob-R.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ob-R.el b/lisp/ob-R.el index c10224abe..ac84d7d51 100644 --- a/lisp/ob-R.el +++ b/lisp/ob-R.el @@ -63,8 +63,8 @@ (useDingbats . :any) (horizontal . :any) (results . ((file list vector table scalar verbatim) - (raw org html latex code pp wrap) - (replace silent append prepend) + (raw html latex org code pp drawer) + (replace silent none append prepend) (output value graphics)))) "R-specific header arguments.")