Browse Source

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

issuing an error when nothing is found and search ne undef.
master
freesource 23 years ago
parent
commit
e48e66e93a
  1. 14
      BootRoot/YardBox.pm

14
BootRoot/YardBox.pm

@ -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…
Cancel
Save