branch: elpa/textile-mode commit f3f8fdcba6dcdf77f7c7233893ccb8b99babc273 Author: Matus Goljer <dota.k...@gmail.com> Commit: Matus Goljer <dota.k...@gmail.com>
Fix bullet regexp --- textile-mode.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/textile-mode.el b/textile-mode.el index db5b69f7da..b6696e04f7 100644 --- a/textile-mode.el +++ b/textile-mode.el @@ -111,7 +111,9 @@ non-matching parentheses" (concat "^\\(" bullet "\\)" (textile-re-concat textile-alignments) "*" - (textile-re-concat textile-attributes) "*")) + (textile-re-concat textile-attributes) "*" + ;; list items must be preceeded by a space + " ")) (defun textile-alignments-matcher () "Return the matcher regexp for an alignments or indentation"