From: David Lawrence Ramsey Date: Mon, 22 May 2006 02:23:56 +0000 (+0000) Subject: avoid unnecessary scrolling when moving to the last line of the help X-Git-Tag: v1.3.12~132 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=6fe4e2be04422589c83074e03062ab3fb217908c;p=nano.git avoid unnecessary scrolling when moving to the last line of the help text git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3548 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/help.c b/src/help.c index 90f50343..611045b2 100644 --- a/src/help.c +++ b/src/help.c @@ -131,8 +131,10 @@ void do_help(void (*refresh_func)(void)) line = 0; break; case NANO_LASTLINE_ALTKEY: - if (meta_key && last_line > editwinrows) - line = last_line - (editwinrows - 1); + if (meta_key) { + if (line + (editwinrows - 1) < last_line) + line = last_line - (editwinrows - 1); + } break; }