mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Moved /HELP to fe-help.c
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1252 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
f453e84436
commit
4550204783
4 changed files with 265 additions and 225 deletions
|
|
@ -63,6 +63,9 @@ void fe_exec_deinit(void);
|
|||
void fe_expandos_init(void);
|
||||
void fe_expandos_deinit(void);
|
||||
|
||||
void fe_help_init(void);
|
||||
void fe_help_deinit(void);
|
||||
|
||||
void fe_ignore_init(void);
|
||||
void fe_ignore_deinit(void);
|
||||
|
||||
|
|
@ -156,6 +159,7 @@ void fe_common_core_init(void)
|
|||
fe_exec_init();
|
||||
#endif
|
||||
fe_expandos_init();
|
||||
fe_help_init();
|
||||
fe_ignore_init();
|
||||
fe_log_init();
|
||||
fe_modules_init();
|
||||
|
|
@ -196,6 +200,7 @@ void fe_common_core_deinit(void)
|
|||
fe_exec_deinit();
|
||||
#endif
|
||||
fe_expandos_deinit();
|
||||
fe_help_deinit();
|
||||
fe_ignore_deinit();
|
||||
fe_log_deinit();
|
||||
fe_modules_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue