commit 6fe4e2be04422589c83074e03062ab3fb217908c
parent ef0d5a76375b848481e084b0f2b19cb19f7a0cf4
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Mon, 22 May 2006 02:23:56 +0000
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
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git 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;
}