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:
parent
e639d5c69e
commit
e48e66e93a
@ -1259,9 +1259,20 @@ sub search {
|
||||
|
||||
}
|
||||
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; " .
|
||||
"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;
|
||||
print "$offset\n";
|
||||
|
||||
} );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user