[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>
This commit is contained in:
Fumitoshi UKAI
2002-01-17 11:06:45 +00:00
parent 0a3fcb8b74
commit 48c6df47d0
4 changed files with 44 additions and 4 deletions

5
main.c
View File

@@ -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]);
}