summaryrefslogtreecommitdiff
path: root/find.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-11 15:17:18 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-11 15:17:18 -0500
commit94aba782d6e2a4ec287c8159e087b3fd621a8a67 (patch)
tree3d452ef5c83851f319e796711f719fa1bf0b8224 /find.c
parent9396a9f602727bc78d7c9dcc95142038edfad51a (diff)
another small find+replace fix
(add match flag PCRE2_NOTEMPTY)
Diffstat (limited to 'find.c')
-rw-r--r--find.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/find.c b/find.c
index 6b8da61..0b3c612 100644
--- a/find.c
+++ b/find.c
@@ -76,25 +76,25 @@ static WarnUnusedResult bool find_match(Ted *ted, BufferPos *pos, u32 *match_sta
assert(buffer);
String32 str = buffer_get_line(buffer, pos->line);
PCRE2_SIZE *groups = pcre2_get_ovector_pointer(ted->find_match_data);
+
+ u32 match_flags = PCRE2_NOTEMPTY;
int ret;
if (direction == +1)
- ret = pcre2_match(ted->find_code, str.str, str.len, pos->index, 0, ted->find_match_data, NULL);
+ ret = pcre2_match(ted->find_code, str.str, str.len, pos->index, match_flags, ted->find_match_data, NULL);
else {
// unfortunately PCRE does not have a backwards option, so we need to do the search multiple times
u32 last_pos = 0;
ret = -1;
while (1) {
- int next_ret = pcre2_match(ted->find_code, str.str, pos->index, last_pos, 0, ted->find_match_data, NULL);
+ int next_ret = pcre2_match(ted->find_code, str.str, pos->index, last_pos, match_flags, ted->find_match_data, NULL);
if (next_ret > 0) {
ret = next_ret;
- if (groups[0] == groups[1]) ++groups[1]; // ensure we don't have an infinite loop
last_pos = (u32)groups[1];
} else break;
}
}
if (ret > 0) {
- if (groups[0] == groups[1]) ++groups[1];
if (match_start) *match_start = (u32)groups[0];
if (match_end) *match_end = (u32)groups[1];
pos->index = (u32)groups[1];