Mercurial > pidgin
diff src/gtkhtml.c @ 732:6609b5a16b38
[gaim-migrate @ 742]
Added support for the S tag.
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Mon, 21 Aug 2000 20:26:56 +0000 |
parents | 8e7ad10b5f26 |
children | c3a920cee3fc |
line wrap: on
line diff
--- a/src/gtkhtml.c Mon Aug 21 18:52:59 2000 +0000 +++ b/src/gtkhtml.c Mon Aug 21 20:26:56 2000 +0000 @@ -3205,7 +3205,7 @@ tag[tpos] = 0; if (!strcasecmp(tag, "B")) bold = 1; - else if (!strcasecmp(tag, "STRIKE")) + else if (!strcasecmp(tag, "STRIKE") || !strcasecmp(tag, "S")) strike = 1; else if (!strcasecmp(tag, "I")) italic = 1; @@ -3217,7 +3217,7 @@ gtk_html_add_seperator(html); else if (!strcasecmp(tag, "/B")) bold = 0; - else if (!strcasecmp(tag, "/STRIKE")) + else if (!strcasecmp(tag, "/STRIKE") || !strcasecmp(tag, "/S")) strike = 0; else if (!strcasecmp(tag, "/I")) italic = 0;