mirror of
git://git.sv.gnu.org/nano.git
synced 2024-12-29 13:49:47 +03:00
One more type fix and two tiny message tweaks.
Patch by David Lawrence Ramsey. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4953 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
6af5bdea27
commit
53435b0efc
@ -1,3 +1,6 @@
|
||||
2014-06-10 David Lawrence Ramsey <pooka109@gmail.com>
|
||||
* src/winio.c: One more type fix and two tiny message tweaks.
|
||||
|
||||
2014-06-09 David Lawrence Ramsey <pooka109@gmail.com>
|
||||
* src/*.c: Cosmetic tweaks of comments and whitespace.
|
||||
* src/help.c, src/rcfile.c, src/winio.c: Elide a function call by
|
||||
|
@ -2915,11 +2915,11 @@ int update_line(filestruct *fileptr, size_t index)
|
||||
mvwaddch(edit, line, COLS - 1, '$');
|
||||
#ifndef NANO_TINY
|
||||
} else {
|
||||
int full_length = strlenpt(fileptr->data);
|
||||
size_t full_length = strlenpt(fileptr->data);
|
||||
for (index += COLS; index <= full_length && line < editwinrows; index += COLS) {
|
||||
line++;
|
||||
#ifdef DEBUG
|
||||
fprintf(stderr, "update_line(): Softwrap code, moving to %d index %lu\n", line, (unsigned long)index);
|
||||
fprintf(stderr, "update_line(): softwrap code, moving to %d index %lu\n", line, (unsigned long)index);
|
||||
#endif
|
||||
blank_line(edit, line, 0, COLS);
|
||||
|
||||
@ -3286,7 +3286,7 @@ void edit_update(update_type location)
|
||||
}
|
||||
openfile->edittop = foo;
|
||||
#ifdef DEBUG
|
||||
fprintf(stderr, "edit_update(), setting edittop to lineno %ld\n", (long)openfile->edittop->lineno);
|
||||
fprintf(stderr, "edit_update(): setting edittop to lineno %ld\n", (long)openfile->edittop->lineno);
|
||||
#endif
|
||||
compute_maxrows();
|
||||
edit_refresh_needed = TRUE;
|
||||
|
Loading…
Reference in New Issue
Block a user