emacs: update coolj-line-prefix-regexp to make space optional

Jani reported that lines prefixed with '>' (as opposed to '> ') are
not highlighted properly [1]. David E responded with a updated regex
[2]. This change implements David E's suggestion.

[1]: id:87a8b5pcky.fsf@nikula.org
[2]: id:m2pok1e3gv.fsf@dme.org
This commit is contained in:
David Bremner 2021-12-25 19:31:12 -04:00
parent 3eb25c94bd
commit 6721e2eac5

View file

@ -45,7 +45,7 @@ Otherwise respect `fill-column'."
:group 'coolj :group 'coolj
:type 'boolean) :type 'boolean)
(defcustom coolj-line-prefix-regexp "^\\(>+ \\)*" (defcustom coolj-line-prefix-regexp "^\\(>+ ?\\)*"
"Regular expression that matches line prefixes." "Regular expression that matches line prefixes."
:group 'coolj :group 'coolj
:type 'regexp) :type 'regexp)