In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/60b8fafeb11519ee514f3d9213b109aa52133e87?hp=93f31ee9fb6e815cac5df15822755aa4d75c91a9>
- Log ----------------------------------------------------------------- commit 60b8fafeb11519ee514f3d9213b109aa52133e87 Author: Aaron Trevena <[email protected]> Date: Wed Mar 20 09:00:08 2013 -0600 I18N-Langinfo/Langinfo.pm: Pod nit M ext/I18N-Langinfo/Langinfo.pm commit 60aa270f351bfcddc87c6997a9225f2503d5c2b5 Author: Karl Williamson <[email protected]> Date: Wed Mar 20 09:03:57 2013 -0600 Add Aaron Trevena to AUTHORS M AUTHORS ----------------------------------------------------------------------- Summary of changes: AUTHORS | 1 + ext/I18N-Langinfo/Langinfo.pm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 679e104..f9806c1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -18,6 +18,7 @@ A. Sinan Unur <[email protected]> Aaron Crane <[email protected]> Aaron B. Dossett <[email protected]> Aaron J. Mackey <[email protected]> +Aaron Trevena <[email protected]> Augustina Blair <[email protected]> Abe Timmerman <[email protected]> Abhijit Menon-Sen <[email protected]> diff --git a/ext/I18N-Langinfo/Langinfo.pm b/ext/I18N-Langinfo/Langinfo.pm index 0b6ef2a..ee9d63c 100644 --- a/ext/I18N-Langinfo/Langinfo.pm +++ b/ext/I18N-Langinfo/Langinfo.pm @@ -72,7 +72,7 @@ our @EXPORT_OK = qw( YESSTR ); -our $VERSION = '0.09'; +our $VERSION = '0.10'; XSLoader::load(); @@ -103,7 +103,7 @@ answers for a yes/no question in the current locale. use I18N::Langinfo qw(langinfo ABDAY_1 YESSTR NOSTR); - my ($abday_1, $yesstr, $nostr) = map { langinfo } qw(ABDAY_1 YESSTR NOSTR); + my ($abday_1, $yesstr, $nostr) = map { langinfo($_) } (ABDAY_1, YESSTR, NOSTR); print "$abday_1? [$yesstr/$nostr] "; -- Perl5 Master Repository
