diff options
author | Timo Sirainen <cras@irssi.org> | 2001-02-13 18:19:59 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-02-13 18:19:59 +0000 |
commit | ea4dea38c0902621c2cb6f71ffdcfeca795b4dca (patch) | |
tree | 5003e667e80b791a6ba8ac82486dab131c2f4335 /scripts | |
parent | 37d0047770b89b0fee06138b9da6a49b583c31d1 (diff) | |
download | irssi-ea4dea38c0902621c2cb6f71ffdcfeca795b4dca.zip |
updated
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1211 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/autoop.pl | 2 | ||||
-rw-r--r-- | scripts/clones.pl | 2 | ||||
-rw-r--r-- | scripts/hello.pl | 2 | ||||
-rw-r--r-- | scripts/mlock.pl | 2 | ||||
-rw-r--r-- | scripts/quitmsg.pl | 2 | ||||
-rw-r--r-- | scripts/realname.pl | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/scripts/autoop.pl b/scripts/autoop.pl index 2f119453..7891bce9 100644 --- a/scripts/autoop.pl +++ b/scripts/autoop.pl @@ -76,5 +76,5 @@ sub event_massjoin { autoop($channel, $masks, @nicks) if ($masks); } -Irssi::command_bind('autoop', '', 'cmd_autoop'); +Irssi::command_bind('autoop', 'cmd_autoop'); Irssi::signal_add_last('massjoin', 'event_massjoin'); diff --git a/scripts/clones.pl b/scripts/clones.pl index 5a0c61a2..27b5a1b1 100644 --- a/scripts/clones.pl +++ b/scripts/clones.pl @@ -22,4 +22,4 @@ sub cmd_clones { return 1; } -Irssi::command_bind('clones', '', 'cmd_clones'); +Irssi::command_bind('clones', 'cmd_clones'); diff --git a/scripts/hello.pl b/scripts/hello.pl index de53c3ab..b5b92aa8 100644 --- a/scripts/hello.pl +++ b/scripts/hello.pl @@ -9,4 +9,4 @@ sub cmd_hello { return 1; } -Irssi::command_bind('hello', '', 'cmd_hello'); +Irssi::command_bind('hello', 'cmd_hello'); diff --git a/scripts/mlock.pl b/scripts/mlock.pl index 5bc0bde7..415bf93e 100644 --- a/scripts/mlock.pl +++ b/scripts/mlock.pl @@ -110,6 +110,6 @@ sub mlock_synced { mlock_check_mode($channel->{server}, $channel->{name}); } -Irssi::command_bind('mlock', '', 'cmd_mlock'); +Irssi::command_bind('mlock', 'cmd_mlock'); Irssi::signal_add_last("event mode", "mlock_mode_changed"); Irssi::signal_add("channel synced", "mlock_synced"); diff --git a/scripts/quitmsg.pl b/scripts/quitmsg.pl index 46e45ffd..cc4b1d3a 100644 --- a/scripts/quitmsg.pl +++ b/scripts/quitmsg.pl @@ -29,4 +29,4 @@ sub cmd_quit { } } -Irssi::command_bind('quit', '', 'cmd_quit'); +Irssi::command_bind('quit', 'cmd_quit'); diff --git a/scripts/realname.pl b/scripts/realname.pl index d57de3d2..e3db5b6b 100644 --- a/scripts/realname.pl +++ b/scripts/realname.pl @@ -31,5 +31,5 @@ sub event_rn_whois { return 1; } -Irssi::command_bind('rn', '', 'cmd_realname'); +Irssi::command_bind('rn', 'cmd_realname'); Irssi::signal_add('redir whois', 'event_rn_whois'); |