aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-03-29 16:32:00 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-03-29 16:32:00 +0000
commit3f67a7d3d6832fe432b0206d85ab2dcc673888fc (patch)
tree8f81259cfd491ecd99943b2eae3fbea546a58f9b /main.c
parentterms.c (set_tty): s/term_info/w3m_term_info/g; (diff)
downloadw3m-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 'main.c')
-rw-r--r--main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/main.c b/main.c
index e85867d..e6a787e 100644
--- a/main.c
+++ b/main.c
@@ -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;
}