aboutsummaryrefslogtreecommitdiffstats
path: root/url.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-10-19 16:17:12 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-10-19 16:17:12 +0000
commita58a9a67823c02ec90ddc77cf49114f30bea05b6 (patch)
tree2ba432366e02a53ed49537154d6102914d98da71 /url.c
parent[w3m-dev 03996] HELP_DIR and funcname.tab (diff)
downloadw3m-a58a9a67823c02ec90ddc77cf49114f30bea05b6.tar.gz
w3m-a58a9a67823c02ec90ddc77cf49114f30bea05b6.zip
[w3m-dev 04002] Re: function and w3m-control
* url.c (getURLScheme): accept numeric in scheme From: ABE Yuji <cbo46560@pop12.odn.ne.jp>
Diffstat (limited to 'url.c')
-rw-r--r--url.c4
1 files changed, 2 insertions, 2 deletions
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 <sys/types.h>
#include <sys/socket.h>
@@ -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;