mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 23:22:16 +02:00
Split expandos from special-vars.c to expandos.c. Added list of signals
to each expando that can might change it's value. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@964 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
5f941b8fa6
commit
d1eaeca255
19 changed files with 687 additions and 520 deletions
|
|
@ -31,10 +31,10 @@
|
|||
#include "servers.h"
|
||||
#include "chatnets.h"
|
||||
#include "commands.h"
|
||||
#include "expandos.h"
|
||||
#include "log.h"
|
||||
#include "rawlog.h"
|
||||
#include "ignore.h"
|
||||
#include "special-vars.h"
|
||||
|
||||
#include "channels.h"
|
||||
#include "queries.h"
|
||||
|
|
@ -60,11 +60,11 @@ void core_init(void)
|
|||
|
||||
chat_protocols_init();
|
||||
chatnets_init();
|
||||
expandos_init();
|
||||
ignore_init();
|
||||
servers_init();
|
||||
log_init();
|
||||
rawlog_init();
|
||||
special_vars_init();
|
||||
|
||||
channels_init();
|
||||
queries_init();
|
||||
|
|
@ -81,11 +81,11 @@ void core_deinit(void)
|
|||
queries_deinit();
|
||||
channels_deinit();
|
||||
|
||||
special_vars_deinit();
|
||||
rawlog_deinit();
|
||||
log_deinit();
|
||||
servers_deinit();
|
||||
ignore_deinit();
|
||||
expandos_deinit();
|
||||
chatnets_deinit();
|
||||
chat_protocols_deinit();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue