From aa69aa95cdcb65e5a999b2cb61799a2a0e1cce3a Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 15 Mar 2001 14:36:23 +0000 Subject: Fix a bit: [mailto:foo] shouldn't grab the ']' * e-html-utils.c (url_extract): Fix a bit: [mailto:foo] shouldn't grab the ']' svn path=/trunk/; revision=8736 --- e-util/e-html-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'e-util/e-html-utils.c') diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c index 41a5a25d3b..d1f069661e 100644 --- a/e-util/e-html-utils.c +++ b/e-util/e-html-utils.c @@ -49,7 +49,7 @@ url_extract (const unsigned 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) { -- cgit v1.2.3