Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-04-21 00:33:35 +0300
committerJunio C Hamano <gitster@pobox.com>2023-04-21 00:33:35 +0300
commitcbfe844aa1b6b0b9513f2ae2fc3d18ff3dd385e6 (patch)
treebd8f27ecb42654e3e52eaca0f37b8976eb87bfcd /userdiff.h
parent667fcf4e15379790f0b609d6a83d578e69f20301 (diff)
parentbe391449542d8a67cb343ec9d0b2f6854d665354 (diff)
Merge branch 'rs/userdiff-multibyte-regex'
The userdiff regexp patterns for various filetypes that are built into the system have been updated to avoid triggering regexp errors from UTF-8 aware regex engines. * rs/userdiff-multibyte-regex: userdiff: support regexec(3) with multi-byte support
Diffstat (limited to 'userdiff.h')
-rw-r--r--userdiff.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/userdiff.h b/userdiff.h
index 24419db697..d726804c3e 100644
--- a/userdiff.h
+++ b/userdiff.h
@@ -18,6 +18,7 @@ struct userdiff_driver {
int binary;
struct userdiff_funcname funcname;
const char *word_regex;
+ const char *word_regex_multi_byte;
const char *textconv;
struct notes_cache *textconv_cache;
int textconv_want_cache;