mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-26 06:39:43 +03:00
- search.c:findnextstr() - Fix off by one in check for wrap around (Rocco Corsi)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1002 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
562964dab3
commit
e29697d210
@ -20,6 +20,9 @@ CVS code -
|
|||||||
shorcut_init()
|
shorcut_init()
|
||||||
- Replace hard coded ALT_G and ALT_H values in the replace
|
- Replace hard coded ALT_G and ALT_H values in the replace
|
||||||
and goto shortcuts with their macro counterparts NANO_ALT_*_KEY.
|
and goto shortcuts with their macro counterparts NANO_ALT_*_KEY.
|
||||||
|
- search.c:
|
||||||
|
findnextstr()
|
||||||
|
- Fix off by one in check for wrap around (Rocco Corsi).
|
||||||
- winio.c:
|
- winio.c:
|
||||||
edit_refresh()
|
edit_refresh()
|
||||||
- Rename lines to nlines to fix AIX breakage (reported by
|
- Rename lines to nlines to fix AIX breakage (reported by
|
||||||
|
2
search.c
2
search.c
@ -305,7 +305,7 @@ filestruct *findnextstr(int quiet, int bracket_mode, filestruct * begin, int beg
|
|||||||
current_x_find = found - fileptr->data;
|
current_x_find = found - fileptr->data;
|
||||||
#if 1
|
#if 1
|
||||||
/* Ensure we haven't wrapped around again! */
|
/* Ensure we haven't wrapped around again! */
|
||||||
if ((search_last_line) && (current_x_find >= beginx)) {
|
if ((search_last_line) && (current_x_find > beginx)) {
|
||||||
if (!quiet)
|
if (!quiet)
|
||||||
not_found_msg(needle);
|
not_found_msg(needle);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user