From: Eric W. <war...@us...> - 2001-10-31 18:52:43
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv20097 Modified Files: dialogs.c Log Message: "Don't Panic!" Index: dialogs.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/dialogs.c,v retrieving revision 1.277 retrieving revision 1.278 diff -u -d -r1.277 -r1.278 --- dialogs.c 2001/10/26 23:20:20 1.277 +++ dialogs.c 2001/10/31 18:52:40 1.278 @@ -3434,6 +3434,9 @@ /* take off the \n */ buf[strlen(buf) - 1] = '\0'; + /* don't lose the thirtieth line of conversation. thanks FeRD */ + g_string_append(string, buf); + if (i == 30) { gtk_imhtml_append_text(GTK_IMHTML(view->layout), string->str, view->options); g_string_free(string, TRUE); @@ -3444,8 +3447,6 @@ gtk_main_iteration(); */ i = 0; - } else { - g_string_append(string, buf); } } |