1
1

tweaks: normalize a type, and rewrap a line

Этот коммит содержится в:
Benno Schulenberg 2016-06-25 19:59:19 +02:00
родитель 5270dd8b32
Коммит 03c689c22c

Просмотреть файл

@ -2365,7 +2365,7 @@ void edit_draw(filestruct *fileptr, const char *converted, int
} else { /* Second case: varnish is a multiline expression. */ } else { /* Second case: varnish is a multiline expression. */
const filestruct *start_line = fileptr->prev; const filestruct *start_line = fileptr->prev;
/* The first line before fileptr that matches 'start'. */ /* The first line before fileptr that matches 'start'. */
regoff_t start_col; size_t start_col;
/* Where the match starts in that line. */ /* Where the match starts in that line. */
const filestruct *end_line; const filestruct *end_line;
/* The line that matches 'end'. */ /* The line that matches 'end'. */
@ -2437,9 +2437,8 @@ void edit_draw(filestruct *fileptr, const char *converted, int
/* No end found after this start. */ /* No end found after this start. */
break; break;
start_col++; start_col++;
if (regexec(varnish->start, start_line->data + if (regexec(varnish->start, start_line->data + start_col,
start_col, 1, &startmatch, 1, &startmatch, REG_NOTBOL) == REG_NOMATCH)
REG_NOTBOL) == REG_NOMATCH)
/* No later start on this line. */ /* No later start on this line. */
goto step_two; goto step_two;
} }