diff -r 075cb0ede3ae -r 764b45883fba libpurple/plugins/debug_example.c --- a/libpurple/plugins/debug_example.c Sun Sep 22 18:46:23 2013 +0530 +++ b/libpurple/plugins/debug_example.c Sun Sep 22 18:47:03 2013 +0530 @@ -79,10 +79,9 @@ ); } -/* As we've covered before, libpurple calls this function, if present, when it - * loads the plugin. Here we're using it to show off the capabilities of the - * debug API and just blindly returning TRUE to tell libpurple it's safe to - * continue loading. */ +/* As we've covered before, this function is called when the plugin is loaded. + * Here we're using it to show off the capabilities of the debug API and just + * blindly returning TRUE to tell libpurple it's safe to continue loading. */ static gboolean plugin_load(PurplePlugin *plugin, GError **error) { @@ -123,4 +122,3 @@ } PURPLE_PLUGIN_INIT(debugexample, plugin_query, plugin_load, plugin_unload); -