[w3m-dev 02418]

main.c: mailto: like pattern to mark as anchor
search.c: check NULL
          add disp_message() by ukai
This commit is contained in:
Fumitoshi UKAI
2001-11-16 17:25:52 +00:00
parent 82a56979df
commit 40d405e05b
3 changed files with 18 additions and 1 deletions

View File

@@ -14,6 +14,10 @@ forwardSearch(Buffer * buf, char *str)
return FALSE;
}
l = begin = buf->currentLine;
if (l == NULL) {
disp_message("Not found", FALSE);
return FALSE;
}
pos = buf->pos + 1;
#ifdef JP_CHARSET
if (l->propBuf[pos] & PC_KANJI2)
@@ -78,6 +82,10 @@ backwardSearch(Buffer * buf, char *str)
return FALSE;
}
l = begin = buf->currentLine;
if (l == NULL) {
disp_message("Not found", FALSE);
return FALSE;
}
if (buf->pos > 0) {
pos = buf->pos - 1;
#ifdef JP_CHARSET