]> git.99rst.org Git - irssi-scripts.irssi.org.git/commitdiff
mh_hold_mode.pl v1.06
authormh <redacted>
Tue, 3 May 2016 18:33:17 +0000 (20:33 +0200)
committermh <redacted>
Tue, 3 May 2016 18:33:17 +0000 (20:33 +0200)
Emulation of ircII per-window hold_mode

changes:
fixed call to missing sub

scripts/mh_hold_mode.pl

index 4a248f5303ddacd48f4e11aa098eafb56744b412..aaefdc2033cf0bcbc7650d834338dcdf184f835d 100644 (file)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# mh_hold_mode.pl v1.05 (20160211)
+# mh_hold_mode.pl v1.06 (20160503)
 #
 # Copyright (c) 2007, 2015, 2016  Michael Hansen
 #
@@ -82,6 +82,8 @@
 #
 # history:
 #
+#      v1.06 (20160503)
+#              fixed call to missing sub
 #      v1.05 (20160211)
 #              moved default settings from hardcoded to irssi settings _default_hold_mode and _default_scroll_always
 #      v1.04 (20160126)
@@ -122,7 +124,7 @@ use strict;
 use Irssi 20100403;
 use Irssi::TextUI;
 
-our $VERSION = '1.05';
+our $VERSION = '1.06';
 our %IRSSI   =
 (
        'name'        => 'mh_hold_mode',
@@ -131,7 +133,7 @@ our %IRSSI   =
        'authors'     => 'Michael Hansen',
        'contact'     => 'mh on IRCnet #help',
        'url'         => 'http://scripts.irssi.org / https://github.com/mh-source/irssi-scripts',
-       'changed'     => 'Thu Feb 11 17:26:34 CET 2016',
+       'changed'     => 'Tue May  3 20:30:06 CEST 2016',
 );
 
 ##############################################################################
@@ -337,7 +339,7 @@ sub signal_key_send_line_last
        }
 }
 
-sub signal_window_changed
+sub signal_window_changed_last
 {
        my ($windowrec_new, $windowrec_old) = @_;
 
@@ -533,6 +535,7 @@ Irssi::command('^REDRAW');
 
 Irssi::timeout_add(1000, 'statusbar_more_redraw', undef);
 
+
 1;
 
 ##############################################################################
git clone https://git.99rst.org/PROJECT