diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-07-11 09:15:48 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-07-11 09:15:48 +0000 |
commit | cf6897a4d43c2484850f48be399b4816c180c9cc (patch) | |
tree | a5132e6f864284a6c1c683088ee1b2b17ab5d1f8 /src/textview.c | |
parent | 17c61cf9a4d162165a31ba14f8f004270ee11edf (diff) |
don't include some chars in URI.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@416 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/textview.c')
-rw-r--r-- | src/textview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textview.c b/src/textview.c index ac6973d6..7cf93bd4 100644 --- a/src/textview.c +++ b/src/textview.c @@ -806,7 +806,7 @@ static gboolean get_uri_part(const gchar *start, const gchar *scanpos, for (ep_ = scanpos; *ep_ != '\0'; ep_++) { if (!isgraph(*(const guchar *)ep_) || !isascii(*(const guchar *)ep_) || - strchr("()<>\"", *ep_)) + strchr("()<>{}[]\"", *ep_)) break; } |