diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-28 13:26:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-28 13:26:25 +0000 |
commit | ec747dc1097a5f80d220311dc89e9d6ec32cab31 (patch) | |
tree | 88da1b167952608d6ae5d7579927a85baf4767ce /perl-install/printer/common.pm | |
parent | 6bd6d9750078047ed4df33564ace48d1cb3c32a9 (diff) | |
download | drakx-ec747dc1097a5f80d220311dc89e9d6ec32cab31.tar drakx-ec747dc1097a5f80d220311dc89e9d6ec32cab31.tar.gz drakx-ec747dc1097a5f80d220311dc89e9d6ec32cab31.tar.bz2 drakx-ec747dc1097a5f80d220311dc89e9d6ec32cab31.tar.xz drakx-ec747dc1097a5f80d220311dc89e9d6ec32cab31.zip |
perl_checker adaptations
Diffstat (limited to 'perl-install/printer/common.pm')
-rw-r--r-- | perl-install/printer/common.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/printer/common.pm b/perl-install/printer/common.pm index 7742bcf71..f78d47b90 100644 --- a/perl-install/printer/common.pm +++ b/perl-install/printer/common.pm @@ -24,7 +24,7 @@ sub addentry { } } push(@lines, $entry) if $sectionfound && !$entryinserted; - return join ("\n", @lines); + return join "\n", @lines; } sub addsection { @@ -57,7 +57,7 @@ sub removeentry { } } } - return join ("", @lines); + return join "", @lines; } sub removesection { @@ -81,7 +81,7 @@ sub removesection { } } } - return join ("", @lines); + return join "", @lines; } 1; |