# HG changeset patch # User Eric Warmenhoven # Date 996714761 0 # Node ID efb39c151cf78e8aa9028e347cd78214d6b9de5d # Parent ff225036d434ee4e099954f1718c2d7b0f2428f9 [gaim-migrate @ 2116] i had reason for this being here. committer: Tailor Script diff -r ff225036d434 -r efb39c151cf7 src/server.c --- a/src/server.c Wed Aug 01 22:18:54 2001 +0000 +++ b/src/server.c Thu Aug 02 01:12:41 2001 +0000 @@ -396,6 +396,14 @@ struct conversation *cnv; int new_conv = 0; + /* we should update the conversation window buttons and menu, if it exists. */ + cnv = find_conversation(name); + if (cnv) + set_convo_gc(cnv, gc); + /* we do the new_conv check here in case any plugins decide to create it */ + else + new_conv = 1; + /* plugin stuff. we pass a char ** but we don't want to pass what's been given us * by the prpls. so we create temp holders and pass those instead. it's basically * just to avoid segfaults. */ @@ -413,14 +421,6 @@ name = angel; message = buffy; - /* we should update the conversation window buttons and menu, if it exists. */ - cnv = find_conversation(name); - if (cnv) - set_convo_gc(cnv, gc); - /* we do the new_conv check here in case any plugins decide to create it */ - else - new_conv = 1; - /* TiK, using TOC, sends an automated message in order to get your away message. Now, * this is one of the biggest hacks I think I've seen. But, in order to be nice to * TiK, we're going to give users the option to ignore it. */