From 803d8050164eaaefdd52fd4ae967c1e038b3c571 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 14 Aug 2001 00:41:59 +0000 Subject: Module loading updates - /LOAD shows now also the statically loaded modules. You can't /LOAD the same module twice. Syntax changed to /LOAD [], /UNLOAD []. NOTE: all modules now need to call register_module() in their init() function. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1748 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/irc/core/irc-core.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/irc/core') diff --git a/src/irc/core/irc-core.c b/src/irc/core/irc-core.c index b036d244..b203fe35 100644 --- a/src/irc/core/irc-core.c +++ b/src/irc/core/irc-core.c @@ -103,6 +103,8 @@ void irc_core_init(void) netsplit_init(); irc_rawlog_init(); irc_expandos_init(); + + module_register("core", "irc"); } void irc_core_deinit(void) -- cgit v1.2.3