comparison src/util.c @ 9160:dabfa4184db8

[gaim-migrate @ 9944] nosnilmot fixed bug #958430 In a conversation window, when I received an URL containing a (, only the part before it is clickable. Example: http://fr.wikipedia.org/wiki/H%C3%A9l%C3%A8ne_(mythologie) the part (mythologie) is not in the clickable part of the URL. It should be. committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Tue, 01 Jun 2004 19:16:34 +0000
parents 13e809489beb
children c3fa2ad099a2
comparison
equal deleted inserted replaced
9159:31be05742be9 9160:dabfa4184db8
1302 badchar(char c) 1302 badchar(char c)
1303 { 1303 {
1304 switch (c) { 1304 switch (c) {
1305 case ' ': 1305 case ' ':
1306 case ',': 1306 case ',':
1307 case '(':
1308 case ')':
1309 case '\0': 1307 case '\0':
1310 case '\n': 1308 case '\n':
1311 case '<': 1309 case '<':
1312 case '>': 1310 case '>':
1313 case '"': 1311 case '"':