Преглед на файлове

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>
Bastien преди 4 години
родител
ревизия
989f50a53b
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      lisp/ob-java.el

+ 1 - 1
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)))