In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/9f42613cff9529b84706745e7fee949fab7b9613?hp=1d4ea287e9a924ad1eaef98145b6d6c3b6219e80>
- Log ----------------------------------------------------------------- commit 9f42613cff9529b84706745e7fee949fab7b9613 Author: Karl Williamson <[email protected]> Date: Sun Aug 14 09:59:11 2016 -0600 locale.c: Add missing '{' Spotted by bulk88, http://nntp.perl.org/group/perl.perl5.porters/238968 ----------------------------------------------------------------------- Summary of changes: locale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale.c b/locale.c index 5b76fd6..9f64d80 100644 --- a/locale.c +++ b/locale.c @@ -1031,7 +1031,7 @@ Perl_init_i18nl10n(pTHX_ int printwarn) : NULL; sl_result = my_setlocale(LC_MESSAGES, locale_param); DEBUG_LOCALE_INIT(LC_MESSAGES, locale_param, sl_result); - if (! sl_result) + if (! sl_result) { setlocale_failure = TRUE; } # endif /* USE_LOCALE_MESSAGES */ -- Perl5 Master Repository
