summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ecay <aaronecay@gmail.com>2015-01-16 17:40:24 -0500
committerAaron Ecay <aaronecay@gmail.com>2015-01-23 14:36:40 -0500
commitc4f34a69b5658b4e49c07738c341098c1cacd635 (patch)
treefa6bcbefb09161706ca984926c376ec3e5827aeb
parenta9e4636cbfe6dd39ff30e5621a11bf658128c46d (diff)
downloadorg-mode-c4f34a69b5658b4e49c07738c341098c1cacd635.tar.gz
babel: Remove functions which are never called.
* lisp/ob-awk.el (org-babel-awk-table-or-string): * lisp/ob-shell.el (org-babel-sh-table-or-results): Remove.
-rw-r--r--lisp/ob-awk.el5
-rw-r--r--lisp/ob-shell.el6
2 files changed, 0 insertions, 11 deletions
diff --git a/lisp/ob-awk.el b/lisp/ob-awk.el
index 6c0fb86..a96ba1a 100644
--- a/lisp/ob-awk.el
+++ b/lisp/ob-awk.el
@@ -105,11 +105,6 @@ called by `org-babel-execute-src-block'"
(mapconcat echo-var var "\n"))
(t (funcall echo-var var)))))
-(defun org-babel-awk-table-or-string (results)
- "If the results look like a table, then convert them into an
-Emacs-lisp table, otherwise return the results as a string."
- (org-babel-script-escape results))
-
(provide 'ob-awk)
diff --git a/lisp/ob-shell.el b/lisp/ob-shell.el
index aa14a69..4d6d7c4 100644
--- a/lisp/ob-shell.el
+++ b/lisp/ob-shell.el
@@ -164,12 +164,6 @@ var of the same value."
(mapconcat echo-var var "\n"))
(t (funcall echo-var var)))))
-(defun org-babel-sh-table-or-results (results)
- "Convert RESULTS to an appropriate elisp value.
-If the results look like a table, then convert them into an
-Emacs-lisp table, otherwise return the results as a string."
- (org-babel-script-escape results))
-
(defun org-babel-sh-initiate-session (&optional session params)
"Initiate a session named SESSION according to PARAMS."
(when (and session (not (string= session "none")))