mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
"command complete" -> "complete command" so that it won't conflict with
/complete command .. also changed "word complete" to "complete word". git-svn-id: http://svn.irssi.org/repos/irssi/trunk@362 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
8fa6ca5e61
commit
0762fbc945
3 changed files with 10 additions and 10 deletions
|
|
@ -444,7 +444,7 @@ void fe_irc_dcc_init(void)
|
|||
signal_add("dcc unknown reply", (SIGNAL_FUNC) dcc_unknown_reply);
|
||||
signal_add("dcc destroyed", (SIGNAL_FUNC) sig_dcc_destroyed);
|
||||
signal_add("query destroyed", (SIGNAL_FUNC) sig_query_destroyed);
|
||||
signal_add("command complete dcc send", (SIGNAL_FUNC) sig_dcc_send_complete);
|
||||
signal_add("complete command dcc send", (SIGNAL_FUNC) sig_dcc_send_complete);
|
||||
command_bind("msg", NULL, (SIGNAL_FUNC) cmd_msg);
|
||||
command_bind("me", NULL, (SIGNAL_FUNC) cmd_me);
|
||||
command_bind("action", NULL, (SIGNAL_FUNC) cmd_action);
|
||||
|
|
@ -477,7 +477,7 @@ void fe_irc_dcc_deinit(void)
|
|||
signal_remove("dcc unknown reply", (SIGNAL_FUNC) dcc_unknown_reply);
|
||||
signal_remove("dcc destroyed", (SIGNAL_FUNC) sig_dcc_destroyed);
|
||||
signal_remove("query destroyed", (SIGNAL_FUNC) sig_query_destroyed);
|
||||
signal_remove("command complete dcc send", (SIGNAL_FUNC) sig_dcc_send_complete);
|
||||
signal_remove("complete command dcc send", (SIGNAL_FUNC) sig_dcc_send_complete);
|
||||
command_unbind("msg", (SIGNAL_FUNC) cmd_msg);
|
||||
command_unbind("me", (SIGNAL_FUNC) cmd_me);
|
||||
command_unbind("action", (SIGNAL_FUNC) cmd_action);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue