summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2011-06-13 14:58:19 -0700
committerEric Schulte <schulte.eric@gmail.com>2011-06-13 14:58:19 -0700
commitf1c0042967b3b8b6c55737f5db28d21017817725 (patch)
treee4de7a839d93782396513446bb8eac7d9573b590
parentf089a9e914ec4576822420fcadf382ecca35e9d3 (diff)
downloadorg-mode-f1c0042967b3b8b6c55737f5db28d21017817725.tar.gz
removing two currently unused export variables
* lisp/ob-exp.el: We may no longer need to export names along with code blocks.
-rw-r--r--lisp/ob-exp.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/lisp/ob-exp.el b/lisp/ob-exp.el
index 09e85ca..ca0af4e 100644
--- a/lisp/ob-exp.el
+++ b/lisp/ob-exp.el
@@ -54,28 +54,6 @@ process."
:type 'boolean)
(put 'org-export-babel-evaluate 'safe-local-variable (lambda (x) (eq x nil)))
-(defvar org-babel-function-def-export-keyword "function"
- "The keyword to substitute for the source name line on export.
-When exporting a source block function, this keyword will
-appear in the exported version in the place of source name
-line. A source block is considered to be a source block function
-if the source name is present and is followed by a parenthesized
-argument list. The parentheses may be empty or contain
-whitespace. An example is the following which generates n random
-\(uniform) numbers.
-
-#+source: rand(n)
-#+begin_src R
- runif(n)
-#+end_src")
-
-(defvar org-babel-function-def-export-indent 4
- "Number of characters to indent a source block on export.
-When exporting a source block function, the block contents will
-be indented by this many characters. See
-`org-babel-function-def-export-name' for the definition of a
-source block function.")
-
(defmacro org-babel-exp-in-export-file (lang &rest body)
(declare (indent 1))
`(let* ((lang-headers (intern (concat "org-babel-default-header-args:" ,lang)))