Browse Source

org-element: Minimize false positives when matching a table.el table

* lisp/org-element.el (org-element--set-regexps): Improve regexp for
  table.el tables.
Nicolas Goaziou 9 years ago
parent
commit
cedef74216
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lisp/org-element.el

+ 2 - 1
lisp/org-element.el

@@ -158,7 +158,8 @@ specially in `org-element--object-lex'.")
 		;; Empty lines.
 		"$" "\\|"
 		;; Tables (any type).
-		"\\(?:|\\|\\+-[-+]\\)" "\\|"
+		"|" "\\|"
+		"\\+\\(?:-+\\+\\)+[ \t]*$" "\\|"
 		;; Comments, keyword-like or block-like constructs.
 		;; Blocks and keywords with dual values need to be
 		;; double-checked.