diff options
author | Timo Sirainen <cras@irssi.org> | 2001-02-17 10:35:35 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-02-17 10:35:35 +0000 |
commit | abe4ddb52ab32cb7e6aaee98a25e93f769a3aa46 (patch) | |
tree | 18f744255342648f9443de36e5b1eee098c9abe2 /src/fe-none | |
parent | f1205c10e0d6ef29065c96d788c35c4e23ed4860 (diff) | |
download | irssi-abe4ddb52ab32cb7e6aaee98a25e93f769a3aa46.zip |
/LOAD module tries to load "module_core" instead. If it wasn't found,
it fallbacks to "module" again. If it is found, it tries to load several
other modules too, like irc_module, fe_module and fe_irc_module.
Split perl module to perl_core and fe_perl. Removed "_common" from some
fe_common modules.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1228 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-none')
-rw-r--r-- | src/fe-none/irssi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fe-none/irssi.c b/src/fe-none/irssi.c index bd93edd8..ec729fc2 100644 --- a/src/fe-none/irssi.c +++ b/src/fe-none/irssi.c @@ -24,8 +24,8 @@ #include "core.h" #ifdef HAVE_STATIC_PERL -void perl_init(void); -void perl_deinit(void); +void perl_core_init(void); +void perl_core_deinit(void); #endif void irc_init(void); @@ -64,7 +64,7 @@ void noui_init(void) signal_add("gui exit", (SIGNAL_FUNC) sig_exit); #ifdef HAVE_STATIC_PERL - perl_init(); + perl_core_init(); #endif signal_emit("irssi init finished", 0); } @@ -72,7 +72,7 @@ void noui_init(void) void noui_deinit(void) { #ifdef HAVE_STATIC_PERL - perl_deinit(); + perl_core_deinit(); #endif signal_remove("reload", (SIGNAL_FUNC) sig_reload); |