summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authormh2016-05-03 20:33:17 +0200
committermh2016-05-03 20:33:17 +0200
commit259d60a3800e7dc2ccbd91d23d014aa9e6480899 (patch)
tree0159900eaa33cbb71bca5027f9afb2e3f3fada97 /scripts
parent570cf54a039325fb48f3887b1cca1bc13d073fd0 (diff)
downloadscripts.irssi.org-259d60a3800e7dc2ccbd91d23d014aa9e6480899.tar.bz2
mh_hold_mode.pl v1.06
Emulation of ircII per-window hold_mode changes: fixed call to missing sub
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mh_hold_mode.pl11
1 files changed, 7 insertions, 4 deletions
diff --git a/scripts/mh_hold_mode.pl b/scripts/mh_hold_mode.pl
index 4a248f5..aaefdc2 100644
--- a/scripts/mh_hold_mode.pl
+++ b/scripts/mh_hold_mode.pl
@@ -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;
##############################################################################