From c1ac64094479cb24b94cc53b9f59726ce9767240 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Tue, 18 Oct 2011 10:08:39 -0600 Subject: [PATCH] fix multi-table bug in code block colname and rowname handling Thanks to Nick Dokos for suggesting this fix * lisp/ob.el (org-babel-disassemble-tables): Fix multi-table bug in code block colname and rowname handling. --- lisp/ob.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob.el b/lisp/ob.el index 487dcb0f3..0778fe0f0 100644 --- a/lisp/ob.el +++ b/lisp/ob.el @@ -1272,7 +1272,7 @@ of the vars, cnames and rnames." (setq var (cons (car var) (org-babel-del-hlines (cdr var)))))) var) vars) - cnames rnames))) + (reverse cnames) (reverse rnames)))) (defun org-babel-reassemble-table (table colnames rownames) "Add column and row names to a table.