# HG changeset patch # User Sean Egan # Date 1182970332 0 # Node ID 4c3a24270114e01f8afb847786cfeadd5f508e29 # Parent 4434e5c9d247dcd96616926c82c994d86b75388a Removes the 'remove all buffer tags' function from gtkimhtml's close_tags() function. The problem was that the BACKGROUND tag is always at the end iter, and we don't want to remove that. The toggle functions called above it should do the trick of properly resetting everything, and it does seem to. Fixes #1034 diff -r 4434e5c9d247 -r 4c3a24270114 pidgin/gtkimhtml.c --- a/pidgin/gtkimhtml.c Wed Jun 27 18:11:30 2007 +0000 +++ b/pidgin/gtkimhtml.c Wed Jun 27 18:52:12 2007 +0000 @@ -4939,9 +4939,6 @@ if (imhtml->edit.link) gtk_imhtml_toggle_link(imhtml, NULL); - - gtk_text_buffer_remove_all_tags(imhtml->text_buffer, iter, iter); - } char *gtk_imhtml_get_markup(GtkIMHtml *imhtml)