mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
added "message own_public" and "message own_private" events that are
sent when /msg command is used. this way we don't need to parse the /msg's options everywhere. also efnet @#channels support works now better. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1041 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
219c83ae6a
commit
2ae679be08
15 changed files with 210 additions and 141 deletions
|
|
@ -39,6 +39,9 @@ void fe_irc_channels_deinit(void);
|
|||
void fe_irc_queries_init(void);
|
||||
void fe_irc_queries_deinit(void);
|
||||
|
||||
void fe_irc_messages_init(void);
|
||||
void fe_irc_messages_deinit(void);
|
||||
|
||||
void fe_irc_commands_init(void);
|
||||
void fe_irc_commands_deinit(void);
|
||||
|
||||
|
|
@ -99,6 +102,7 @@ void fe_common_irc_init(void)
|
|||
|
||||
fe_irc_channels_init();
|
||||
fe_irc_queries_init();
|
||||
fe_irc_messages_init();
|
||||
fe_irc_commands_init();
|
||||
fe_ircnet_init();
|
||||
fe_irc_server_init();
|
||||
|
|
@ -119,6 +123,7 @@ void fe_common_irc_deinit(void)
|
|||
|
||||
fe_irc_channels_deinit();
|
||||
fe_irc_queries_deinit();
|
||||
fe_irc_messages_deinit();
|
||||
fe_irc_commands_deinit();
|
||||
fe_ircnet_deinit();
|
||||
fe_irc_server_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue