From 3ca4175052e8a6c26a6cc93501e92a4436cad3df Mon Sep 17 00:00:00 2001 From: hiro Date: Tue, 2 Aug 2005 08:24:31 +0000 Subject: fixed gcc-4.0 warnings. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@457 ee746299-78ed-0310-b773-934348b2243d --- src/textview.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/textview.c') diff --git a/src/textview.c b/src/textview.c index a0332c84..7df5e385 100644 --- a/src/textview.c +++ b/src/textview.c @@ -842,11 +842,11 @@ static gchar *make_uri_string(const gchar *bp, const gchar *ep) (isascii(ch) && \ (ch) > 32 && \ (ch) != 127 && \ - !isspace(ch) && \ + !g_ascii_isspace(ch) && \ !strchr("(),;<>\"", (ch))) /* alphabet and number within 7bit ASCII */ -#define IS_ASCII_ALNUM(ch) (isascii(ch) && isalnum(ch)) +#define IS_ASCII_ALNUM(ch) (isascii(ch) && g_ascii_isalnum(ch)) /* get_email_part() - retrieves an email address. Returns TRUE if succesful */ static gboolean get_email_part(const gchar *start, const gchar *scanpos, -- cgit v1.2.3