From 6ce2b72c9f2e19e75ba2ffe72bdce4eea9c9b5a8 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 9 Apr 2013 16:16:04 +0200 Subject: [PATCH] org-element: Parse table cells with missing ending space * lisp/org-element.el (org-element-table-cell-successor): Parse table cells with missing ending space. --- lisp/org-element.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-element.el b/lisp/org-element.el index e09d2cb52..73d0b46c9 100644 --- a/lisp/org-element.el +++ b/lisp/org-element.el @@ -3393,7 +3393,7 @@ LIMIT bounds the search. Return value is a cons cell whose CAR is `table-cell' and CDR is beginning position." - (when (looking-at "[ \t]*.*?[ \t]+|") (cons 'table-cell (point)))) + (when (looking-at "[ \t]*.*?[ \t]*|") (cons 'table-cell (point)))) ;;;; Target