mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 04:13:32 +02:00
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
This commit is contained in:
parent
f1efdc6eaa
commit
c5a6c78ba4
1 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue