[e-users] Terminology 1.11.0

2021-11-11 Thread Boris Faure
== “You cannot swim for new horizons until you have courage to lose sight of the shore.” William Faulkner

Re: [e-users] e16 regex bugfix

2021-11-11 Thread Dennis Nezic
--- regex.c.orig2021-11-11 14:08:55.0 -0500 +++ regex.c 2021-11-11 15:19:47.0 -0500 @@ -102,9 +102,24 @@ i = isafter(i, s, rx2); if (i < 0) return 0; +// Because the for loop will increment i (the index +

[e-users] e16 regex bugfix

2021-11-11 Thread Dennis Nezic
Here's a small patch for regex.c Currently, in matches.cfg, "Title *bla ..." will match any title with "bla" in it ... but it should only match if the title ends in bla, right? By the way, the indentations in that file are ... weird :P. ___