summaryrefslogtreecommitdiff
path: root/src/perl
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-04-27 17:57:29 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-04-27 17:57:29 +0000
commitc5a6c78ba4e3e105632ddc79e6efa7b561656ce1 (patch)
tree94d6a89ff2b2a25f6d02a605dca23b8bff87a5b8 /src/perl
parentf1efdc6eaa0d35801f65dd0e3ef04a1e036986f2 (diff)
downloadirssi-c5a6c78ba4e3e105632ddc79e6efa7b561656ce1.zip
Irssi::command_bind*() commands were still using broken old signal
priorities git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2723 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl')
-rw-r--r--src/perl/common/Core.xs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/perl/common/Core.xs b/src/perl/common/Core.xs
index bd7d9fe2..6889d137 100644
--- a/src/perl/common/Core.xs
+++ b/src/perl/common/Core.xs
@@ -438,17 +438,17 @@ PPCODE:
void
command_bind_first(...)
CODE:
- handle_command_bind(0, items, ST(0), ST(1), ST(2));
+ handle_command_bind(SIGNAL_PRIORITY_HIGH, items, ST(0), ST(1), ST(2));
void
command_bind(...)
CODE:
- handle_command_bind(1, items, ST(0), ST(1), ST(2));
+ handle_command_bind(SIGNAL_PRIORITY_DEFAULT, items, ST(0), ST(1), ST(2));
void
command_bind_last(...)
CODE:
- handle_command_bind(2, items, ST(0), ST(1), ST(2));
+ handle_command_bind(SIGNAL_PRIORITY_LOW, items, ST(0), ST(1), ST(2));
void
command_runsub(cmd, data, server, item)