Browse Source

Merge branch 'maint'

Bastien 4 years ago
parent
commit
ec80dd6c17
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/ob-sqlite.el

+ 1 - 1
lisp/ob-sqlite.el

@@ -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