comparison src/gtkhtml.c @ 1250:b5783215b245

[gaim-migrate @ 1260] decklin's clean up of the account editor, much needed. indent -kr -i8 -l105 -ncs -cp7 -npcs -T GtkWidget -T gpointer -T AppletCallbackFunc -T GtkFunction -T gaim_plugin_remove -T name -T FILE -T gchar -T user_opts -T GdkEvent -T GtkObject ... did about.c, aim.c, away.c, browser.c, buddy_chat.c, gaimrc.c, html.c, idle.c, multi.c. Need to do buddy.c, conversation.c, dialogs.c, oscar.c, perl.c, plugins.c, prefs.c, proxy.c, prpl.c, rvous.c, server.c, sound.c, toc.c, util.c. not doing gtkhtml.c because it's a piece of crap anyway, or *ticker.c because they're syd's. got rid of debug_buff, just debug_printf now. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 13 Dec 2000 20:18:35 +0000
parents eaa0e2f5ace4
children 7f486375bfd5
comparison
equal deleted inserted replaced
1249:3e44de27622d 1250:b5783215b245
3653 c += 4; 3653 c += 4;
3654 } 3654 }
3655 else if (*(c + 1) == '#') 3655 else if (*(c + 1) == '#')
3656 { 3656 {
3657 int pound = 0; 3657 int pound = 0;
3658 debug_print("got &#;\n"); 3658 debug_printf("got &#;\n");
3659 if (sscanf(c, "&#%d;", &pound) > 0) { 3659 if (sscanf(c, "&#%d;", &pound) > 0) {
3660 ws[wpos++] = (char)pound; 3660 ws[wpos++] = (char)pound;
3661 c += 2; 3661 c += 2;
3662 while (isdigit(*c)) c++; 3662 while (isdigit(*c)) c++;
3663 if (*c != ';') c--; 3663 if (*c != ';') c--;