mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Fixed handling WHOIS printing once and for all. Everything unknown between
"beginning of whois" and "end of whois" events is now printed as whois_special. Removed whois_registered and whois_help, they're printed with whois_special as well. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3263 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
e9c3a217e3
commit
6f45115b5e
7 changed files with 389 additions and 401 deletions
|
|
@ -68,6 +68,9 @@ void fe_netsplit_deinit(void);
|
|||
void fe_netjoin_init(void);
|
||||
void fe_netjoin_deinit(void);
|
||||
|
||||
void fe_whois_init(void);
|
||||
void fe_whois_deinit(void);
|
||||
|
||||
void irc_completion_init(void);
|
||||
void irc_completion_deinit(void);
|
||||
|
||||
|
|
@ -89,6 +92,7 @@ void fe_common_irc_init(void)
|
|||
fe_modes_init();
|
||||
fe_netsplit_init();
|
||||
fe_netjoin_init();
|
||||
fe_whois_init();
|
||||
irc_completion_init();
|
||||
|
||||
settings_check();
|
||||
|
|
@ -113,6 +117,7 @@ void fe_common_irc_deinit(void)
|
|||
fe_modes_deinit();
|
||||
fe_netsplit_deinit();
|
||||
fe_netjoin_deinit();
|
||||
fe_whois_deinit();
|
||||
irc_completion_deinit();
|
||||
|
||||
theme_unregister();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue