summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2015-05-19 23:22:11 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2015-05-19 23:22:11 +0200
commitc8bfd52f5f5329ad514fa6aef6ec283e3c7a233b (patch)
tree76dfac64e762017da0a32721574bbfbcf226e378
parentde8302c65a54b4c8bcdd313a64cf766a02ae3b79 (diff)
downloadorg-mode-c8bfd52f5f5329ad514fa6aef6ec283e3c7a233b.tar.gz
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 <andreas.leha@med.uni-goettingen.de> <http://permalink.gmane.org/gmane.emacs.orgmode/97683>
-rw-r--r--lisp/ob-R.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ob-R.el b/lisp/ob-R.el
index c10224a..ac84d7d 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.")