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:
Dan Winship
2000-06-28 20:37:21 +00:00
parent 7a35ab4d84
commit 94f71e47c2
2 changed files with 6 additions and 1 deletions

View File

@ -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) {