comparison src/util.c @ 8625:afff7b6ae29f

[gaim-migrate @ 9376] fix the :'( smiley on jabber committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 09 Apr 2004 05:30:46 +0000
parents 56360561af5e
children 140b0d020c43
comparison
equal deleted inserted replaced
8624:da687392cbcb 8625:afff7b6ae29f
1488 ret = g_string_append_c(ret, '>'); 1488 ret = g_string_append_c(ret, '>');
1489 c += 4; 1489 c += 4;
1490 } else if (!strncmp(c, "&quot;", 6)) { 1490 } else if (!strncmp(c, "&quot;", 6)) {
1491 ret = g_string_append_c(ret, '"'); 1491 ret = g_string_append_c(ret, '"');
1492 c += 6; 1492 c += 6;
1493 } else if (!strncmp(c, "&apos;", 6)) {
1494 ret = g_string_append_c(ret, '\'');
1495 c += 6;
1493 } else if (!strncmp(c, "<br>", 4)) { 1496 } else if (!strncmp(c, "<br>", 4)) {
1494 ret = g_string_append_c(ret, '\n'); 1497 ret = g_string_append_c(ret, '\n');
1495 c += 4; 1498 c += 4;
1496 } else { 1499 } else {
1497 ret = g_string_append_c(ret, *c); 1500 ret = g_string_append_c(ret, *c);