ob-java.el: Inhibit Lisp evaluation when reading the result

* lisp/ob-java.el (org-babel-execute:java): Inhibit Lisp
evaluation when reading the result.

Reported-by: Jarmo Hurri <jarmo.hurri@iki.fi>
This commit is contained in:
Bastien 2020-09-06 11:48:20 +02:00
parent c93983613d
commit 989f50a53b
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ parameters may be used, like javac -verbose"
" " cmdline " " classname) "")))
(org-babel-reassemble-table
(org-babel-result-cond (cdr (assq :result-params params))
(org-babel-read results)
(org-babel-read results t)
(let ((tmp-file (org-babel-temp-file "c-")))
(with-temp-file tmp-file (insert results))
(org-babel-import-elisp-from-file tmp-file)))