comparison src/protocols/oscar/oscar.c @ 11256:bb0d7b719af2

[gaim-migrate @ 13430] I give you regex filtering in the debug window. We keep a buffer of all the text, so when unpausing all the messages that were output when paused will be displayed, as well as when you change the filter. This _should_ be alright on systems that don't have regex.h but I haven't gotten anyone to test it recently, if it's busted, just #ifdef HAVE_REGEX_H it. committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Sat, 13 Aug 2005 22:09:34 +0000
parents 7d31d61e6438
children 90be432e8385
comparison
equal deleted inserted replaced
11255:1b1d63602d77 11256:bb0d7b719af2
7777 static void 7777 static void
7778 init_plugin(GaimPlugin *plugin) 7778 init_plugin(GaimPlugin *plugin)
7779 { 7779 {
7780 GaimAccountOption *option; 7780 GaimAccountOption *option;
7781 7781
7782 gaim_debug_register_category("oscar");
7783
7784 option = gaim_account_option_string_new(_("Auth host"), "server", FAIM_LOGIN_SERVER); 7782 option = gaim_account_option_string_new(_("Auth host"), "server", FAIM_LOGIN_SERVER);
7785 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); 7783 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
7786 7784
7787 option = gaim_account_option_int_new(_("Auth port"), "port", FAIM_LOGIN_PORT); 7785 option = gaim_account_option_int_new(_("Auth port"), "port", FAIM_LOGIN_PORT);
7788 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); 7786 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);