diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-03-29 16:32:00 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-03-29 16:32:00 +0000 |
commit | 3f67a7d3d6832fe432b0206d85ab2dcc673888fc (patch) | |
tree | 8f81259cfd491ecd99943b2eae3fbea546a58f9b /main.c | |
parent | terms.c (set_tty): s/term_info/w3m_term_info/g; (diff) | |
download | w3m-3f67a7d3d6832fe432b0206d85ab2dcc673888fc.tar.gz w3m-3f67a7d3d6832fe432b0206d85ab2dcc673888fc.zip |
[w3m-dev 03159] "ttp:" is marked instead of "http:" by MARL_URL
* main.c (chkURLBuffer): check internal URLs first
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | main.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.94 2002/03/27 15:35:06 ukai Exp $ */ +/* $Id: main.c,v 1.95 2002/03/29 16:32:00 ukai Exp $ */ #define MAINPROGRAM #include "fm.h" #include <signal.h> @@ -4362,12 +4362,12 @@ chkURLBuffer(Buffer *buf) NULL }; int i; -#ifdef USE_EXTERNAL_URI_LOADER - chkExternalURIBuffer(buf); -#endif for (i = 0; url_like_pat[i]; i++) { reAnchor(buf, url_like_pat[i]); } +#ifdef USE_EXTERNAL_URI_LOADER + chkExternalURIBuffer(buf); +#endif buf->check_url |= CHK_URL; } |