Преглед изворни кода

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 пре 10 година
родитељ
комит
cedef74216
1 измењених фајлова са 2 додато и 1 уклоњено
  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.