Mercurial > pidgin
changeset 13789:99688ab310c8
[gaim-migrate @ 16201]
Prepend last_auto_response structs to the list, instead of appending them. This probably won't make a significant difference.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 29 May 2006 17:18:17 +0000 |
parents | ef95bcc62330 |
children | e744943e749c |
files | src/server.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/server.c Mon May 29 17:11:53 2006 +0000 +++ b/src/server.c Mon May 29 17:18:17 2006 +0000 @@ -108,7 +108,7 @@ g_snprintf(lar->name, sizeof(lar->name), "%s", name); lar->gc = gc; lar->sent = 0; - last_auto_responses = g_slist_append(last_auto_responses, lar); + last_auto_responses = g_slist_prepend(last_auto_responses, lar); return lar; }