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.
This commit is contained in:
Nicolas Goaziou 2013-04-09 16:16:04 +02:00
parent 872e3736d7
commit 6ce2b72c9f
1 changed files with 1 additions and 1 deletions

View File

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