瀏覽代碼

babel: Allow output tables to start with 'hline

Dan Davison 15 年之前
父節點
當前提交
8c827ba5ba
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      contrib/babel/lisp/org-babel.el

+ 3 - 2
contrib/babel/lisp/org-babel.el

@@ -784,8 +784,9 @@ code ---- the results are extracted in the syntax of the source
 	   ;; assume the result is a table if it's not a string
 	   ((not (stringp result))
 	    (insert (concat (orgtbl-to-orgtbl
-			     (if (and (listp (car result))
-                                      (listp (cdr (car result))))
+			     (if (or (eq 'hline (car result))
+				     (and (listp (car result))
+					  (listp (cdr (car result)))))
 				 result (list result))
 			     '(:fmt (lambda (cell) (format "%s" cell)))) "\n"))
 	    (forward-line -1) (org-cycle))