From 224d2deb2711682fcce843ab4a46b310108db5fb Mon Sep 17 00:00:00 2001 From: wrmr Date: Fri, 2 Jan 2026 21:23:05 -0500 Subject: remove C_EOF (unused) and lower the value C_ANY to prevent warnings --- regex.c | 1 - regex.h | 3 +-- 2 files changed, 1 insertion(+), 3 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; diff --git a/regex.h b/regex.h index 8f95319..d6dbbbc 100644 --- a/regex.h +++ b/regex.h @@ -53,10 +53,9 @@ typedef struct { /* for RE_CHAR */ typedef enum { - C_ANY = 0x80000000, + C_ANY = 0x40000000, C_LINE_START, C_LINE_END, - C_EOF = 0xffffffff } ReChSpecial; typedef struct { -- cgit v1.2.3