nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 8f463778d13646086112d67ddfe89372046668b5
parent ba7ac78e36d483b1930a3a950c1541abcd4e11da
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Thu, 14 Jan 2016 13:27:22 +0000

Deleting an 'if' that is always FALSE.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5558 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 5+++--
Msrc/winio.c | 3---
2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,6 +1,7 @@ 2016-01-14 Benno Schulenberg <bensberg@justemail.net> - * doc/nanorc.sample.in: Remove reference to an obsolete file. + * doc/nanorc.sample.in: Remove a reference to an obsolete file. Reported by Mike Frysinger. + * src/winio.c (edit_redraw): Delete an 'if' that is always FALSE. 2016-01-13 Benno Schulenberg <bensberg@justemail.net> * src/files.c (save_poshistory): Reduce the indentation. @@ -71,7 +72,7 @@ GNU nano 2.5.1 - 2016.01.11 2015-12-31 Benno Schulenberg <bensberg@justemail.net> * src/text.c (do_formatter): Restore the cursor position differently. * src/search.c (do_gotopos): Delete this now unused function. - * src/search.c (do_gotolinecolumn): Chop an always FALSE parameter. + * src/search.c (do_gotolinecolumn): Chop an always-FALSE parameter. * src/search.c (do_gotolinecolumn): Chop a duplicate parameter -- 'allow_update' always has the same value as 'interactive'. diff --git a/src/winio.c b/src/winio.c @@ -2994,9 +2994,6 @@ void edit_redraw(filestruct *old_current, size_t pww_save) ssize_t old_lineno; filestruct *old_edittop = openfile->edittop; - if (old_edittop->lineno < openfile->edittop->lineno) - old_lineno = old_edittop->lineno; - else old_lineno = (old_edittop->lineno + maxrows <= openfile->filebot->lineno) ? old_edittop->lineno + editwinrows :