add ")" to the set of characters to back up over at the end of a potential
* e-html-utils.c (url_extract): add ")" to the set of characters to back up over at the end of a potential URL. svn path=/trunk/; revision=3778
This commit is contained in:
@ -71,7 +71,7 @@ url_extract (const char **text, gboolean check)
|
||||
end++;
|
||||
|
||||
/* Back up if we probably went too far. */
|
||||
while (end > *text && strchr (",.!?;:>", *(end - 1)))
|
||||
while (end > *text && strchr (",.!?;:>)", *(end - 1)))
|
||||
end--;
|
||||
|
||||
if (check) {
|
||||
|
Reference in New Issue
Block a user