]> 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 1cb3ade86e60d37d849b49dfff77029b06c79ce5..8df6c0e61465ecbc1a271abc37669161b5be2fa2 100644 (file)
@@ -3,14 +3,12 @@ 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.01';
-
-my $ph;
+our $VERSION = '0.02';
 
 sub dye_nick {
  my ($nick, $col) = ($_[0], 0);
@@ -22,18 +20,11 @@ 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 ];
  
-$ph = new Xchat::XPI name   => 'Extended Xchat Perl Interface :: Utils',
-                     tag    => 'XPI::Utils',
-                     desc   => 'Utility functions',
-                     author => 'Vincent Pit (VPIT)',
-                     email  => 'perl@profvince.com',
-                     url    => 'http://www.profvince.com';
-
 1;