# HG changeset patch # User Gary Kramlich # Date 1165975874 0 # Node ID 1a54e98534ec886111c19f7aa66a46121da8eedd # Parent 2e35d63bf8f1d4f8bc5d26057f8cb3c56dd51cc0 [gaim-migrate @ 17980] make this add a newline for both incomming and outgoing im's. Note that this is only for displayed messages. We do not, repeat, do NOT, send the newline to chats and other users. committer: Tailor Script diff -r 2e35d63bf8f1 -r 1a54e98534ec libgaim/plugins/newline.c --- a/libgaim/plugins/newline.c Wed Dec 13 01:42:58 2006 +0000 +++ b/libgaim/plugins/newline.c Wed Dec 13 02:11:14 2006 +0000 @@ -45,13 +45,9 @@ { void *conversation = gaim_conversations_get_handle(); - gaim_signal_connect(conversation, "displaying-im-msg", - plugin, GAIM_CALLBACK(addnewline_msg_cb), NULL); - gaim_signal_connect(conversation, "displaying-chat-msg", + gaim_signal_connect(conversation, "writing-im-msg", plugin, GAIM_CALLBACK(addnewline_msg_cb), NULL); - gaim_signal_connect(conversation, "receiving-im-msg", - plugin, GAIM_CALLBACK(addnewline_msg_cb), NULL); - gaim_signal_connect(conversation, "receiving-chat-msg", + gaim_signal_connect(conversation, "writing-chat-msg", plugin, GAIM_CALLBACK(addnewline_msg_cb), NULL); return TRUE;