# HG changeset patch # User Nathan Walp # Date 1043277433 0 # Node ID 868ee63e1fe85edf971a2a856d8a894f35fda9be # Parent eed028527289fc2f921573af4152730127814f34 [gaim-migrate @ 4665] this doesn't need to be checked here, and I had the check wrong. oops :-P this will make groups stop disappearing when you remove a buddy committer: Tailor Script diff -r eed028527289 -r 868ee63e1fe8 src/buddy.c --- a/src/buddy.c Wed Jan 22 20:45:32 2003 +0000 +++ b/src/buddy.c Wed Jan 22 23:17:13 2003 +0000 @@ -814,9 +814,8 @@ remove_buddy_show(gs, bs); g_free(bs->name); g_free(bs); - if ((!g_slist_length(gs->members) && - (blist_options & OPT_BLIST_NO_MT_GRP)) || - gaim_group_on_account(rem_g, NULL)) { + if (!g_slist_length(gs->members) && + (blist_options & OPT_BLIST_NO_MT_GRP)) { shows = g_slist_remove(shows, gs); gtk_tree_remove_item(GTK_TREE(buddies), gs->item); g_free(gs->name);