emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/textile-mode f3f8fdcba6 14/19: Fix bullet regexp


From: ELPA Syncer
Subject: [nongnu] elpa/textile-mode f3f8fdcba6 14/19: Fix bullet regexp
Date: Sat, 29 Jan 2022 08:29:36 -0500 (EST)

branch: elpa/textile-mode
commit f3f8fdcba6dcdf77f7c7233893ccb8b99babc273
Author: Matus Goljer <dota.keys@gmail.com>
Commit: Matus Goljer <dota.keys@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"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]