mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
fixed $topic uninit
added $winref git-svn-id: http://svn.irssi.org/repos/irssi/trunk@989 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
9681252b4c
commit
2937e72a68
4 changed files with 48 additions and 1 deletions
|
|
@ -47,6 +47,9 @@ void fe_channels_deinit(void);
|
|||
void fe_core_log_init(void);
|
||||
void fe_core_log_deinit(void);
|
||||
|
||||
void fe_expandos_init(void);
|
||||
void fe_expandos_deinit(void);
|
||||
|
||||
void fe_ignore_init(void);
|
||||
void fe_ignore_deinit(void);
|
||||
|
||||
|
|
@ -106,6 +109,7 @@ void fe_common_core_init(void)
|
|||
keyboard_init();
|
||||
printtext_init();
|
||||
formats_init();
|
||||
fe_expandos_init();
|
||||
fe_ignore_init();
|
||||
fe_log_init();
|
||||
fe_modules_init();
|
||||
|
|
@ -135,6 +139,7 @@ void fe_common_core_deinit(void)
|
|||
keyboard_deinit();
|
||||
printtext_deinit();
|
||||
formats_deinit();
|
||||
fe_expandos_deinit();
|
||||
fe_ignore_deinit();
|
||||
fe_log_deinit();
|
||||
fe_modules_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue