top: refine inspect logic for already in-place matches
Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
parent
3b2b9a95e6
commit
2219c80514
@ -2541,9 +2541,9 @@ static void insp_find_str (int ch, int *col, int *row) {
|
|||||||
xx = insp_find_ofs(xx, yy);
|
xx = insp_find_ofs(xx, yy);
|
||||||
if (xx < INSP_RLEN(yy)) {
|
if (xx < INSP_RLEN(yy)) {
|
||||||
found = 1;
|
found = 1;
|
||||||
if (xx == *col) { // matched where we were!
|
if (xx == *col && yy == *row) { // matched where we were!
|
||||||
++xx; // ( was the user maybe )
|
++xx; // ( was the user maybe )
|
||||||
continue; // ( trying to fool us? )
|
continue; // ( trying to fool us? )
|
||||||
}
|
}
|
||||||
*col = xx;
|
*col = xx;
|
||||||
*row = yy;
|
*row = yy;
|
||||||
|
Loading…
Reference in New Issue
Block a user