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

* lisp/ob-sqlite.el (org-babel-sqlite-table-or-scalar): Inhibit
Lisp evaluation when reading the result.

Reported-by: rrandresf@gmail.com
This commit is contained in:
Bastien 2020-09-06 11:58:53 +02:00
parent 989f50a53b
commit 15e2d83313
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ This function is called by `org-babel-execute-src-block'."
"If RESULT looks like a trivial table, then unwrap it."
(if (and (equal 1 (length result))
(equal 1 (length (car result))))
(org-babel-read (caar result))
(org-babel-read (caar result) t)
(mapcar (lambda (row)
(if (eq 'hline row)
'hline