# HG changeset patch # User Christian Hammond # Date 1072860750 0 # Node ID 7d25d4e503433d9cb72f472850f39e3b221b4a12 # Parent b02b30247e7ac261a89ed9906fe3ca81cea6afc6 [gaim-migrate @ 8643] We now save the list of plugins on quit, before unloading them. That way, any plugin that unloaded itself is taken off the auto-load list. committer: Tailor Script diff -r b02b30247e7a -r 7d25d4e50343 src/main.c --- a/src/main.c Wed Dec 31 08:22:55 2003 +0000 +++ b/src/main.c Wed Dec 31 08:52:30 2003 +0000 @@ -42,6 +42,7 @@ #include "gtkdebug.h" #include "gtkft.h" #include "gtknotify.h" +#include "gtkplugin.h" #include "gtkpounce.h" #include "gtkprefs.h" #include "gtkprivacy.h" @@ -521,6 +522,9 @@ session_end(); #endif + /* Save the plugins we have loaded for next time. */ + gaim_gtk_plugins_save(); + /* and end it all... */ gtk_main_quit(); }