Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
9a4a5454
Commit
9a4a5454
authored
8 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
painting: properly look for a new start match only after the end match
parent
af7201f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/winio.c
+10
-2
src/winio.c
with
10 additions
and
2 deletions
+10
-2
src/winio.c
View file @
9a4a5454
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment