]> git.vpit.fr Git - perl/scripts/xchat.git/blobdiff - hl.pl
Freshen the default banner
[perl/scripts/xchat.git] / hl.pl
diff --git a/hl.pl b/hl.pl
index 5b67967ec415e0b07257c06280ca3b209e6bec09..7e76ba2c6cfb0e654a0a4aff635c8fca84e9e6d3 100755 (executable)
--- a/hl.pl
+++ b/hl.pl
@@ -3,11 +3,11 @@ package Xchat::VPIT::Highlight;
 use strict;
 use warnings;
 
-use Xchat qw/:all/;
+use Xchat qw<:all>;
 
 use lib get_info 'xchatdir';
 use Xchat::XPI;
-use Xchat::XPI::Events qw/filter/;
+use Xchat::XPI::Events qw<filter>;
 
 our $VERSION = '0.04';
 
@@ -25,7 +25,7 @@ sub guiclear {
 hook_print 'Private Message to Dialog', sub { guihl; return EAT_NONE };
 
 my %hl = (
- '#cpantesters' => [ qw/
+ '#cpantesters' => [ qw<
     Acme-CPANAuthors-You-re_using
     B-RecDeparse
     Bit-MorseSignals
@@ -48,7 +48,7 @@ my %hl = (
     rgit-
     subs-auto
     \bwith-
-  / ],
+  > ],
 );
 
 for (keys %hl) {
@@ -95,6 +95,6 @@ $ph = Xchat::XPI->new(
  email  => 'perl@profvince.com',
  url    => 'http://www.profvince.com',
 );
+
 1;