+2009-09-15 Chris Allegretta <chrisa@asty.org>
+ * winio.c: Clean up some unused variables from the soft wrapping code.
+
GNU nano 2.1.11 - 2009.09.14
2009-09-12 Chris Allegretta <chrisa@asty.org>
* winio.c (edit_update) - properly update edittop when using soft wrapping.
#
# $Id$
-AC_INIT([GNU nano], [2.1.11], [nano-devel@gnu.org], [nano])
+AC_INIT([GNU nano], [2.1.11-svn], [nano-devel@gnu.org], [nano])
AC_CONFIG_SRCDIR([src/nano.c])
AC_CANONICAL_TARGET([])
AM_INIT_AUTOMAKE
line = fileptr->lineno - openfile->edittop->lineno;
if (line < 0 || line >= editwinrows)
- return;
+ return 1;
/* First, blank out the line. */
blank_line(edit, line, 0, COLS);
bool do_redraw = need_vertical_update(0) ||
need_vertical_update(pww_save);
filestruct *foo = NULL;
- ssize_t i = 0, extracuzsoft = 0;
/* If either old_current or current is offscreen, scroll the edit
* window until it's onscreen and get out. */