]> git.vpit.fr Git - perl/scripts/xchat.git/blobdiff - Xchat/XPI/Utils.pm
Switch to qw<>
[perl/scripts/xchat.git] / Xchat / XPI / Utils.pm
index 6fa15c1e4524ea9f6f0c94d56f5d08bb8e28d90f..8df6c0e61465ecbc1a271abc37669161b5be2fa2 100644 (file)
@@ -3,10 +3,10 @@ package Xchat::XPI::Utils;
 use strict;
 use warnings;
 
-use Xchat qw/:all/;
+use Xchat qw<:all>;
 
 use lib get_info 'xchatdir';
-use Xchat::XPI qw/register init/;
+use Xchat::XPI qw<register init>;
  
 our $VERSION = '0.02';
 
@@ -20,10 +20,10 @@ sub dye_nick {
  return sprintf "\003%d%s", $rcolors[$col], $nick;
 }
 
-use base qw/Exporter/
+use base qw<Exporter>
  
 our @EXPORT         = ();
-our %EXPORT_TAGS    = ('funcs' => [ qw/dye_nick/ ]);
+our %EXPORT_TAGS    = ('funcs' => [ qw<dye_nick> ]);
 our @EXPORT_OK      = map { @$_ } values %EXPORT_TAGS;
 $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];