summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorJohn Marriott <basilisk@internode.on.net>2024-05-20 19:18:26 +0200
committerChristian Brabandt <cb@256bit.org>2024-05-20 19:18:26 +0200
commit8c85a2a49acf80e4f53ec51e6ff2a5f3830eeddb (patch)
treed6554cf3c98aeef4af872d35ded945933bf911f8 /src/structs.h
parent69dff00dfb37077f4a80fd9635ea963889ad4b49 (diff)
patch 9.1.0426: too many strlen() calls in search.cv9.1.0426
Problem: too many strlen() calls in search.c Solution: refactor code and remove more strlen() calls, use explicit variable to remember strlen (John Marriott) closes: #14796 Signed-off-by: John Marriott <basilisk@internode.on.net> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 36339c4347..b5341e3bad 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -4795,6 +4795,7 @@ typedef struct soffset
typedef struct spat
{
char_u *pat; // the pattern (in allocated memory) or NULL
+ size_t patlen; // the length of the patten (0 is pat is NULL)
int magic; // magicness of the pattern
int no_scs; // no smartcase for this pattern
soffset_T off;