From 38cdda66d7d318918aab13b5e3b8dbfebc9ffd1c Mon Sep 17 00:00:00 2001 From: intrigeri Date: Mon, 10 Nov 2008 15:09:56 +0100 Subject: [PATCH] po: actually use pofiles() function, to enhance code clarity Signed-off-by: intrigeri --- IkiWiki/Plugin/po.pm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index e7f36e968..8ea852d04 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -584,12 +584,9 @@ sub change(@) { #{{{ $updated_pot_file=1; } my @pofiles; - foreach my $lang (keys %{$config{po_slave_languages}}) { - my $pofile=pofile($file, $lang); - if ($updated_pot_file || ! -e $pofile) { - push @pofiles, $pofile; - } - } + map { + push @pofiles, $_ if ($updated_pot_file || ! -e $_); + } (pofiles($file)); if (@pofiles) { refreshpofiles($file, @pofiles); map { IkiWiki::rcs_add($_); } @pofiles if ($config{rcs}); -- 2.44.0