1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-04-04 07:43:22 -04:00

This finishes search backwards for both Esc && Return .. all that is left is

issuing an error when nothing is found and search ne undef.
This commit is contained in:
freesource 2001-08-28 20:40:15 +00:00
parent e639d5c69e
commit e48e66e93a

View File

@ -1259,9 +1259,20 @@ sub search {
} }
else { else {
$offset = "";
my $tmp_offset;
if (!$case_sensitive->active) {
$tmp_offset = rindex($tmp_ct, $tmp_k);
}
else {
$tmp_offset = rindex($changed_text_from_template,
$keywords);
}
question_window("Beginning of document reached; " . question_window("Beginning of document reached; " .
"continue from end?", "continue from end?",
$search_window, $submit_b); $search_window, $submit_b,
-1);
print "$offset && $tmp_offset TOO\n";
} }
} }
@ -1339,6 +1350,7 @@ sub search {
} }
$old_keywords = $keywords; $old_keywords = $keywords;
print "$offset\n";
} ); } );