# HG changeset patch # User Sean Egan # Date 1049767718 0 # Node ID 2ff05a24192b75e8168b353bf950893d567179b9 # Parent 5078f765e3f918f5098d9309eb165917df685a98 [gaim-migrate @ 5426] No more joke... it was funny, though. committer: Tailor Script diff -r 5078f765e3f9 -r 2ff05a24192b NEWS --- a/NEWS Tue Apr 08 01:07:11 2003 +0000 +++ b/NEWS Tue Apr 08 02:08:38 2003 +0000 @@ -6,6 +6,12 @@ blame it on the rain. It was falling, falling. I blame it on the faucet. It drips all night. + Sean: I committed my news after Rob. I'm cooler than Nathan (by far) but + not as cool as Rob. So I go here. Actually, I didn't do anything since + 0.60 other than commit some other peoples patches. The one from Dave Camp + is cool. How 'bout this snow? Isn't that crazy? Oh, and thanks to everyone + who wished me a happy birthday. + Nathan: You want frequent releases? You got 'em ;-) Chip wrote some cool new pounce stuff, and things shouldn't get weird when you drag groups and buddies around. It's bad enough having 1 of some of my diff -r 5078f765e3f9 -r 2ff05a24192b src/server.c --- a/src/server.c Tue Apr 08 01:07:11 2003 +0000 +++ b/src/server.c Tue Apr 08 02:08:38 2003 +0000 @@ -815,18 +815,14 @@ qm->len = len; unread_message_queue = g_slist_append(unread_message_queue, qm); } else { - /* "CVS will be broken frequently for fun" - -- Topic on #gaim, 7 April 2003 */ - char *upper = g_ascii_strup(message, len); if (cnv == NULL) cnv = gaim_conversation_new(GAIM_CONV_IM, gc->account, name); /* CONV XXX gaim_conversation_set_name(cnv, name); */ - gaim_im_write(GAIM_IM(cnv), NULL, upper, len, + gaim_im_write(GAIM_IM(cnv), NULL, message, len, away | WFLAG_RECV, mtime); gaim_window_flash(gaim_conversation_get_window(cnv)); - g_free(upper); } }