use strict;
use warnings;
-our $VERSION = '1.0a4'; # add219076dbc8f6
+our $VERSION = '1.0a5'; # e03ad26d0bb6d80
our %IRSSI = (
authors => 'Nei',
contact => 'Nei @ anti@conference.jabber.teamidiot.de',
use Hash::Util qw(lock_keys);
use Text::ParseWords qw(shellwords);
+BEGIN {
+ if ($] < 5.012) {
+ *CORE::GLOBAL::length = *CORE::GLOBAL::length = sub (_) {
+ defined $_[0] ? CORE::length($_[0]) : undef
+ };
+ *Irssi::active_win = {}; # hide incorrect warning
+ }
+}
+
unless (IN_IRSSI) {
local *_ = \@ARGV;
&AwlViewer::main;
{ package Irssi::Nick }
-BEGIN {
- if ($] < 5.012) {
- *CORE::GLOBAL::length = *CORE::GLOBAL::length = sub (_) {
- defined $_[0] ? CORE::length($_[0]) : undef
- };
- *Irssi::active_win = {}; # hide incorrect warning
- }
-}
-
UNITCHECK
{ package AwlViewer;
use strict;