diff options
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-html-utils.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index ba7f4cc2b0..42e8345601 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2000-06-28 Dan Winship <danw@helixcode.com> + + * e-html-utils.c (url_extract): add ")" to the set of characters + to back up over at the end of a potential URL. + 2000-06-27 Ettore Perazzoli <ettore@helixcode.com> * e-dialog-widgets.c (get_toggle_value): Use `value_var', not diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c index dc47d0243c..a1f76d4e68 100644 --- a/e-util/e-html-utils.c +++ b/e-util/e-html-utils.c @@ -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) { |