Просмотр исходного кода

Dpkg::Gettext: Move exporter code close to the top

Guillem Jover лет назад: 11
Родитель
Сommit
9faba94aea
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      scripts/Dpkg/Gettext.pm

+ 3 - 3
scripts/Dpkg/Gettext.pm

@@ -27,6 +27,9 @@ use strict;
 use warnings;
 use warnings;
 
 
 our $VERSION = '1.00';
 our $VERSION = '1.00';
+our @EXPORT = qw(_g P_ textdomain ngettext);
+
+use Exporter qw(import);
 
 
 =encoding utf8
 =encoding utf8
 
 
@@ -92,9 +95,6 @@ BEGIN {
     }
     }
 }
 }
 
 
-use Exporter qw(import);
-our @EXPORT=qw(_g P_ textdomain ngettext);
-
 =head1 CHANGES
 =head1 CHANGES
 
 
 =head2 Version 1.00
 =head2 Version 1.00