comparison src/gtkimhtml.c @ 10786:7638c282b1d3

[gaim-migrate @ 12426] oops, this fixes it so i can see my own bgcolor. before it wasn't looking if you didn't have any other tags... I'm not infite looping. Sean,or someone who is, might want to check line 579: while (gtk_text_iter_in_range(&cur, &start, &end)) { specificly check if start ever equals end, that would be bad. committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Thu, 07 Apr 2005 00:29:24 +0000
parents 93fd90cbf45c
children ccf5e33e3239
comparison
equal deleted inserted replaced
10785:4a2f361f49b9 10786:7638c282b1d3
2485 case 33: /* HTML */ 2485 case 33: /* HTML */
2486 case 34: /* /HTML */ 2486 case 34: /* /HTML */
2487 case 35: /* BODY */ 2487 case 35: /* BODY */
2488 break; 2488 break;
2489 case 36: /* /BODY */ 2489 case 36: /* /BODY */
2490 gtk_text_buffer_insert(imhtml->text_buffer, iter, ws, wpos);
2491 ws[0] = '\0'; wpos = 0;
2490 gtk_imhtml_toggle_background(imhtml, NULL); 2492 gtk_imhtml_toggle_background(imhtml, NULL);
2491 break; 2493 break;
2492 case 37: /* FONT */ 2494 case 37: /* FONT */
2493 case 38: /* HEAD */ 2495 case 38: /* HEAD */
2494 case 39: /* /HEAD */ 2496 case 39: /* /HEAD */