summaryrefslogtreecommitdiff
path: root/regex.c
diff options
context:
space:
mode:
authorwrmr2026-01-02 21:23:05 -0500
committerwrmr2026-01-02 21:23:05 -0500
commit224d2deb2711682fcce843ab4a46b310108db5fb (patch)
tree5ae9671ef7ff92e2331f38b5b9e6657f6304e51c /regex.c
parent2a0a6f2557f28aa14af0b79921c5d8e311730069 (diff)
remove C_EOF (unused) and lower the value C_ANY to prevent warnings
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/regex.c b/regex.c
index a31b94f..b73cd42 100644
--- a/regex.c
+++ b/regex.c
@@ -836,7 +836,6 @@ static inline isize re_search_try_match(ReSearch *s, size_t i, size_t n) {
}
if (s->flags & RE_SEARCH_LAST_CHUNK) {
f |= RE_THREAD_AT_END;
- s->c = C_EOF;
if (re_step_final(s, i, f)) {
found_i = i;
s->match_end = start + i;