summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2013-04-09 16:16:04 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2013-04-09 16:17:08 +0200
commit6ce2b72c9f2e19e75ba2ffe72bdce4eea9c9b5a8 (patch)
tree7e0bf0ab8e8b8502521c564b2377bd445477b93e
parent872e3736d7f9582288e7a53690972d5e1c0cac31 (diff)
downloadorg-mode-6ce2b72c9f2e19e75ba2ffe72bdce4eea9c9b5a8.tar.gz
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.
-rw-r--r--lisp/org-element.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-element.el b/lisp/org-element.el
index e09d2cb..73d0b46 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