In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/e7a474c07a323436b1df5dd0738f84316f86ca48?hp=07fbfc1d8cc566004b43d10c5bec8682b01400e8>
- Log ----------------------------------------------------------------- commit e7a474c07a323436b1df5dd0738f84316f86ca48 Author: Karl Williamson <[email protected]> Date: Sat Mar 23 11:01:58 2019 -0600 PATCH: [perl #132928] Save some bytes This takes Zefram's approach to avoid duplicated string constants on some compilers ----------------------------------------------------------------------- Summary of changes: regexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regexec.c b/regexec.c index 00e822d729..9d67da614e 100644 --- a/regexec.c +++ b/regexec.c @@ -92,7 +92,7 @@ static const char utf8_locale_required[] = #ifdef DEBUGGING /* At least one required character in the target string is expressible only in * UTF-8. */ -static const char* const non_utf8_target_but_utf8_required +static const char non_utf8_target_but_utf8_required[] = "Can't match, because target string needs to be in UTF-8\n"; #endif -- Perl5 Master Repository
