summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien <bzg@gnu.org>2020-09-06 11:48:20 +0200
committerBastien <bzg@gnu.org>2020-09-06 11:48:20 +0200
commit989f50a53be7254de38263a1b52843f19690f4a7 (patch)
tree653f4cf3341e4c56478e1e4274a7f80f9f12398f
parentc93983613dc9bba88f39f81b06a9813060a4599a (diff)
downloadorg-mode-989f50a53.tar.gz
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>
-rw-r--r--lisp/ob-java.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob-java.el b/lisp/ob-java.el
index 4b3d454..866da84 100644
--- a/lisp/ob-java.el
+++ b/lisp/ob-java.el
@@ -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)))