comparison src/gaimrc.c @ 4122:b1c9eef8fa12

[gaim-migrate @ 4339] filter_break was breaking win32 gaimrc_read_plugins committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Mon, 23 Dec 2002 21:29:56 +0000
parents 198a5edcb1c5
children 22875a399312
comparison
equal deleted inserted replaced
4121:69c049c48a96 4122:b1c9eef8fa12
447 if (buf[0] == '}') 447 if (buf[0] == '}')
448 break; 448 break;
449 449
450 p = parse_line(buf, &parse_buffer); 450 p = parse_line(buf, &parse_buffer);
451 if (!strcmp(p->option, "plugin")) { 451 if (!strcmp(p->option, "plugin")) {
452 #ifndef _WIN32
452 filter_break(p->value[0]); 453 filter_break(p->value[0]);
454 #endif
453 load = g_slist_append(load, g_strdup(p->value[0])); 455 load = g_slist_append(load, g_strdup(p->value[0]));
454 } 456 }
455 } 457 }
456 /* this is such a fucked up hack. the reason we do this is because after 458 /* this is such a fucked up hack. the reason we do this is because after
457 * we load a plugin the gaimrc file gets rewrit. so we have to remember 459 * we load a plugin the gaimrc file gets rewrit. so we have to remember