Commit 2358badc authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

painting: properly detect a change in start/end matches

The inversion of the logic in commit a6605dce was incomplete -- oops.

This fixes https://savannah.gnu.org/bugs/?50306.
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
...@@ -295,7 +295,7 @@ void color_update(void) ...@@ -295,7 +295,7 @@ void color_update(void)
void check_the_multis(filestruct *line) void check_the_multis(filestruct *line)
{ {
const colortype *ink; const colortype *ink;
int astart, anend; bool astart, anend;
regmatch_t startmatch, endmatch; regmatch_t startmatch, endmatch;
/* If there is no syntax or no multiline regex, there is nothing to do. */ /* If there is no syntax or no multiline regex, there is nothing to do. */
...@@ -309,8 +309,8 @@ void check_the_multis(filestruct *line) ...@@ -309,8 +309,8 @@ void check_the_multis(filestruct *line)
alloc_multidata_if_needed(line); alloc_multidata_if_needed(line);
astart = regexec(ink->start, line->data, 1, &startmatch, 0); astart = (regexec(ink->start, line->data, 1, &startmatch, 0) == 0);
anend = regexec(ink->end, line->data, 1, &endmatch, 0); anend = (regexec(ink->end, line->data, 1, &endmatch, 0) == 0);
/* Check whether the multidata still matches the current situation. */ /* Check whether the multidata still matches the current situation. */
if (line->multidata[ink->id] == CNONE || if (line->multidata[ink->id] == CNONE ||
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment