From 17216e6dc9f339061c2cf4f9557264a64513030d Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Fri, 14 Feb 2020 14:24:42 +0900 Subject: [PATCH] regexp: Add comment of changes. Signed-off-by: NIIBE Yutaka --- regexp/jimregexp.c | 5 +++++ 1 file changed, 5 insertions(+) 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 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.