[w3m-dev 03160] Re: "ttp:" is marked instead of "http:" by MARL_URL
* NEWS: * anchor.c (reAnchorAny): check MarkAllPages * fm.h (MarkAllPages): added * rc.c (CMT_MARK_ALL_PAGES): added (mark_all_pages): added From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
6
anchor.c
6
anchor.c
@@ -1,4 +1,4 @@
|
||||
/* $Id: anchor.c,v 1.9 2002/01/31 18:28:24 ukai Exp $ */
|
||||
/* $Id: anchor.c,v 1.10 2002/03/29 16:39:37 ukai Exp $ */
|
||||
#include "fm.h"
|
||||
#include "myctype.h"
|
||||
#include "regex.h"
|
||||
@@ -295,7 +295,9 @@ reAnchorAny(Buffer *buf, char *re,
|
||||
if ((re = regexCompile(re, 1)) != NULL) {
|
||||
return re;
|
||||
}
|
||||
for (l = buf->firstLine; l != NULL; l = l->next) {
|
||||
for (l = MarkAllPages ? buf->firstLine : buf->topLine; l != NULL &&
|
||||
(MarkAllPages || l->linenumber < buf->topLine->linenumber + LASTLINE);
|
||||
l = l->next) {
|
||||
p = l->lineBuf;
|
||||
for (;;) {
|
||||
if (regexMatch(p, &l->lineBuf[l->len] - p, p == l->lineBuf) == 1) {
|
||||
|
Reference in New Issue
Block a user