From a58a9a67823c02ec90ddc77cf49114f30bea05b6 Mon Sep 17 00:00:00 2001 From: Fumitoshi UKAI Date: Sun, 19 Oct 2003 16:17:12 +0000 Subject: [w3m-dev 04002] Re: function and w3m-control * url.c (getURLScheme): accept numeric in scheme From: ABE Yuji --- url.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'url.c') diff --git a/url.c b/url.c index 14aa63c..99134b7 100644 --- a/url.c +++ b/url.c @@ -1,4 +1,4 @@ -/* $Id: url.c,v 1.83 2003/09/26 17:59:51 ukai Exp $ */ +/* $Id: url.c,v 1.84 2003/10/19 16:17:12 ukai Exp $ */ #include "fm.h" #include #include @@ -1238,7 +1238,7 @@ getURLScheme(char **url) int i; int scheme = SCM_MISSING; - while (*p && (IS_ALPHA(*p) || *p == '.' || *p == '+' || *p == '-')) + while (*p && (IS_ALNUM(*p) || *p == '.' || *p == '+' || *p == '-')) p++; if (*p == ':') { /* scheme found */ scheme = SCM_UNKNOWN; -- cgit v1.2.3