aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-01-17 11:06:45 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-01-17 11:06:45 +0000
commit48c6df47d0f3791c8f9b351188f6578ae84debe4 (patch)
tree0a4c86e1c36345ad975a729fab002d5efb94d1aa /main.c
parent[w3m-dev 02866] (diff)
downloadw3m-48c6df47d0f3791c8f9b351188f6578ae84debe4.tar.gz
w3m-48c6df47d0f3791c8f9b351188f6578ae84debe4.zip
[w3m-dev 02867] mark URL for external URIs
* main.c (chkURLBuffer): chkExternalURIBuffer() * proto.h (chkExternalURIBuffer): added * url.c (chkExternalURIBuffer): added From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.c b/main.c
index e0ee67e..882d65f 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.64 2002/01/16 19:05:37 ukai Exp $ */
+/* $Id: main.c,v 1.65 2002/01/17 11:06:45 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -4201,6 +4201,9 @@ 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]);
}