comparison src/protocols/msn/utils.c @ 8691:0eb5161ef333

[gaim-migrate @ 9444] Patch by Stu Tomlinson to disable the font size and background color buttons in MSN, and close the tags in msn/utils.c. Thanks :) committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 18 Apr 2004 03:27:33 +0000
parents 69e30736b9ef
children 538a78ff9fdb
comparison
equal deleted inserted replaced
8690:b3b3384bc1e6 8691:0eb5161ef333
55 while (*cur && *cur != ';') 55 while (*cur && *cur != ';')
56 { 56 {
57 pre = g_string_append_c(pre, '<'); 57 pre = g_string_append_c(pre, '<');
58 pre = g_string_append_c(pre, *cur); 58 pre = g_string_append_c(pre, *cur);
59 pre = g_string_append_c(pre, '>'); 59 pre = g_string_append_c(pre, '>');
60 post = g_string_prepend_c(post, '>');
61 post = g_string_prepend_c(post, *cur);
62 post = g_string_prepend_c(post, '/');
63 post = g_string_prepend_c(post, '<');
60 cur++; 64 cur++;
61 } 65 }
62 } 66 }
63 67
64 cur = strstr(mime, "CO="); 68 cur = strstr(mime, "CO=");