summaryrefslogtreecommitdiff
path: root/lisp/ob-io.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/ob-io.el')
-rw-r--r--lisp/ob-io.el10
1 files changed, 1 insertions, 9 deletions
diff --git a/lisp/ob-io.el b/lisp/ob-io.el
index 971b37f..c309b88 100644
--- a/lisp/ob-io.el
+++ b/lisp/ob-io.el
@@ -62,14 +62,6 @@ called by `org-babel-execute-src-block'"
(org-babel-pick-name
(cdr (assoc :rowname-names params)) (cdr (assoc :rownames params))))))
-
-(defun org-babel-io-table-or-string (results)
- "Convert RESULTS into an appropriate elisp value.
-If 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))
-
-
(defvar org-babel-io-wrapper-method
"(
%s
@@ -98,7 +90,7 @@ in BODY as elisp."
(concat org-babel-io-command " " src-file) "")))
(org-babel-result-cond result-params
raw
- (org-babel-io-table-or-string raw)))))))
+ (org-babel-script-escape raw)))))))
(defun org-babel-prep-session:io (session params)