nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 9a4a5454f213a3f0180f88a51c28c52be46796d5
parent af7201f9a0d2f23fbdea57e56fae80239d3bf300
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Sat, 21 Jan 2017 11:58:00 +0100

painting: properly look for a new start match only after the end match

Diffstat:
Msrc/winio.c | 12++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/src/winio.c b/src/winio.c @@ -2484,7 +2484,7 @@ void edit_draw(filestruct *fileptr, const char *converted, while (TRUE) { /* Begin searching for an end after the start match. */ index += startmatch.rm_eo; - /* If the start match is zero-length, don't get stuck. */ + /* If the start match is of length zero, step ahead. */ if (startmatch.rm_so == startmatch.rm_eo) { index = move_mbright(start_line->data, index); if (index > linelen) @@ -2492,8 +2492,16 @@ void edit_draw(filestruct *fileptr, const char *converted, } /* If there is no end after this last start, good. */ if (regexec(varnish->end, start_line->data + index, - 0, NULL, REG_NOTBOL) == REG_NOMATCH) + 1, &endmatch, REG_NOTBOL) == REG_NOMATCH) break; + /* Begin searching for a new start after the end match. */ + index += endmatch.rm_eo; + /* If the end match is of length zero, step ahead. */ + if (endmatch.rm_so == endmatch.rm_eo) { + index = move_mbright(start_line->data, index); + if (index > linelen) + break; + } /* If there is no later start on this line, next step. */ if (regexec(varnish->start, start_line->data + index, 1, &startmatch, REG_NOTBOL) == REG_NOMATCH)