From 6fe4e2be04422589c83074e03062ab3fb217908c Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Mon, 22 May 2006 02:23:56 +0000 Subject: [PATCH] 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 --- src/help.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; } -- 2.39.5