aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2020-02-14 05:24:42 +0000
committerNIIBE Yutaka <[email protected]>2020-02-14 05:24:42 +0000
commit17216e6dc9f339061c2cf4f9557264a64513030d (patch)
treec09fb7d4baa5006fd64f6926cd2b83215d6dcbfb
parentregexp: Tweak generation of _unicode_mapping.c. (diff)
downloadgnupg-17216e6dc9f339061c2cf4f9557264a64513030d.tar.gz
gnupg-17216e6dc9f339061c2cf4f9557264a64513030d.zip
regexp: Add comment of changes.
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r--regexp/jimregexp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/regexp/jimregexp.c b/regexp/jimregexp.c
index cab83b920..e3fe4fc05 100644
--- a/regexp/jimregexp.c
+++ b/regexp/jimregexp.c
@@ -47,6 +47,11 @@
* shorthand character classes, increased number of parentheses to 100,
* backslash escape sequences. It also removes \n as an alternative to |.
*
+ *** THIS IS AN ALTERED VERSION. It was altered to offer POSIX-like
+ *** regular expression routines of regcomp/regexec/regerror/regfree,
+ *** with UTF-8 support, by NIIBE Yutaka <[email protected]> on
+ *** 2020-02-14.
+ *
* Beware that some of this code is subtly aware of the way operator
* precedence is structured in regular expressions. Serious changes in
* regular-expression syntax might require a total rethink.