more miscellaneous minor fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2864 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2005-07-14 23:51:52 +00:00
parent 443a766fe2
commit 0532296a10
4 changed files with 5 additions and 7 deletions

View File

@ -96,8 +96,9 @@ CVS code -
do_replace()
- Blank out last_replace properly again just before displaying
the "Replace" prompt. (DLR, found by Mike Frysinger)
- Remove unnecessary renumber(). (DLR)
- winio.c:
edit_scroll()
edit_scroll(), edit_refresh()
- Clean up and simplify. (DLR)
do_statusbar_next_word()
- Rework to be more like do_statusbar_prev_word(), to avoid a

View File

@ -191,7 +191,7 @@ void renumber(filestruct *fileptr)
assert(fileptr != fileptr->next);
for (; fileptr != NULL; fileptr = fileptr->next)
fileptr->lineno = line++;
fileptr->lineno = ++line;
}
/* Partition a filestruct so it begins at (top, top_x) and ends at (bot,

View File

@ -956,7 +956,6 @@ void do_replace(void)
openfile->current_x = begin_x;
openfile->placewewant = pww_save;
renumber(openfile->fileage);
edit_refresh();
if (numreplaced >= 0)

View File

@ -3624,13 +3624,11 @@ void edit_refresh(void)
fprintf(stderr, "edit_refresh(): edittop->lineno = %ld\n", (long)openfile->edittop->lineno);
#endif
while (nlines < editwinrows) {
while (nlines < editwinrows && foo != NULL) {
update_line(foo, (foo == openfile->current) ?
openfile->current_x : 0);
nlines++;
if (foo->next == NULL)
break;
foo = foo->next;
nlines++;
}
while (nlines < editwinrows) {
blank_line(edit, nlines, 0, COLS);