summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-05-29 08:27:13 -0600
committerTom Rini <[email protected]>2025-05-29 08:27:13 -0600
commit23be77e18d19ddb9c2ecdf71638bacfbc369fd13 (patch)
tree73d82f75a865be88af0e376baa0fc2980f1b4b48 /include
parent2f3766949bbea7aa5a472157561d387fd94205d2 (diff)
parent6990cc5257283a631a286a4321a3515c7537f636 (diff)
Merge patch series "regex patches"
Rasmus Villemoes <[email protected]> says: This started as a rather simple patch, 1/12, adding the ability to more conveniently do regex matching in shell. But with that, it became very easy to see what the slre library can and especially what it cannot do, and that way I found both outright bugs and a "wow, doesn't it support that syntax" gotcha. I couldn't find any tests ('git grep slre -- test/' was empty), so I added a small test suite and tweaked slre.c. Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include')
-rw-r--r--include/slre.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/slre.h b/include/slre.h
index 4b41a4b276f..af5b1302d9c 100644
--- a/include/slre.h
+++ b/include/slre.h
@@ -63,7 +63,6 @@ struct slre {
int code_size;
int data_size;
int num_caps; /* Number of bracket pairs */
- int anchored; /* Must match from string start */
const char *err_str; /* Error string */
};