diff options
| author | Ailin Nemui | 2015-11-23 21:22:34 +0100 | 
|---|---|---|
| committer | Ailin Nemui | 2015-11-23 21:22:34 +0100 | 
| commit | 370fd39f13f66cb2fc9f0b2363bcae89b07e6b2d (patch) | |
| tree | 8fbaa0e8520c95784266252b9f5ddc9b4cbe98f3 /scripts/adv_windowlist.pl | |
| parent | f7ee4a7c7f377e59acd8ba70b310ce715a99888b (diff) | |
| download | scripts.irssi.org-370fd39f13f66cb2fc9f0b2363bcae89b07e6b2d.tar.bz2 | |
adv_windowlist 1.0a3
Diffstat (limited to 'scripts/adv_windowlist.pl')
| -rw-r--r-- | scripts/adv_windowlist.pl | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/scripts/adv_windowlist.pl b/scripts/adv_windowlist.pl index 19bbe70..b76afee 100644 --- a/scripts/adv_windowlist.pl +++ b/scripts/adv_windowlist.pl @@ -1,7 +1,7 @@  use strict;  use warnings; -our $VERSION = '1.0a2'; # 185124f561a65ff +our $VERSION = '1.0a3'; # f5bd5232c9f9f34  our %IRSSI = (      authors     => 'Nei',      contact     => 'Nei @ anti@conference.jabber.teamidiot.de', @@ -643,7 +643,7 @@ sub remove_uniform {  sub remove_uniform_vars {      my $win = shift;      my $name = __PACKAGE__ . '::custom_xform::' . $win->{active}{type} -	if $win->{active} && $win->{active}{type}; +	if ref $win->{active} && $win->{active}{type};      no strict 'refs';      local ${$name} = 1 if $name;      remove_uniform(+shift); @@ -2352,8 +2352,9 @@ UNITCHECK  # Changelog  # ========= -# 1.0a2 +# 1.0a3  # - new awl_viewer_launch setting and an array of related settings +# - fixed regression bug /exec -interactive  #  # 0.9  # - fix endless loop in awin detection code! | 
