summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Davison <davison@stats.ox.ac.uk>2009-10-24 12:49:53 -0400
committerEric Schulte <schulte.eric@gmail.com>2009-10-24 15:27:44 -0600
commitb84540ec795695fadbe8dbef3b16b946d1e3a7b5 (patch)
tree89673a32b7555f16fffc44ea3308fcc7ea4ac20f
parented0f4a36e9846f7808d743759424019275f714fc (diff)
downloadorg-mode-b84540ec795695fadbe8dbef3b16b946d1e3a7b5.tar.gz
org-exp-blocks: remove remnants of R support
-rw-r--r--lisp/org-exp-blocks.el15
1 files changed, 1 insertions, 14 deletions
diff --git a/lisp/org-exp-blocks.el b/lisp/org-exp-blocks.el
index 5102f21..9829ab9 100644
--- a/lisp/org-exp-blocks.el
+++ b/lisp/org-exp-blocks.el
@@ -60,11 +60,6 @@
;; their own divs with author-specific ids allowing for css
;; coloring of comments based on the author.
;;
-;; R :: Implements Sweave type exporting, evaluates blocks of R code,
-;; and also replaces \R{} chunks in the file with their result
-;; when passed to R. This require the `R' command which is
-;; provided by ESS (Emacs Speaks Statistics).
-;;
;;; Adding new blocks
;;
;; When adding a new block type first define a formatting function
@@ -76,17 +71,11 @@
(require 'cl))
(require 'org)
-(defvar comint-last-input-end)
-(defvar comint-prompt-regexp)
-(defvar comint-last-input-end)
(defvar htmlp)
(defvar latexp)
(defvar docbookp)
(defvar asciip)
-(declare-function comint-send-input "comint" (&optional no-newline artificial))
-(declare-function R "ext:ess" nil)
-
(defun org-export-blocks-set (var value)
"Set the value of `org-export-blocks' and install fontification."
(set var value)
@@ -102,9 +91,7 @@
(defcustom org-export-blocks
'((comment org-export-blocks-format-comment t)
(ditaa org-export-blocks-format-ditaa nil)
- (dot org-export-blocks-format-dot nil)
- (r org-export-blocks-format-R nil)
- (R org-export-blocks-format-R nil))
+ (dot org-export-blocks-format-dot nil))
"Use this a-list to associate block types with block exporting
functions. The type of a block is determined by the text
immediately following the '#+BEGIN_' portion of the block header.