commit 90b60edc3fc3ca82d3e5ee71255bae17fbcda0d8 parent f629aad27ba324ea16ce2d1107839dbc7e9acfc9 Author: David Lawrence Ramsey <pooka109@gmail.com> Date: Sat, 6 May 2006 02:51:33 +0000 fix do_help() meta key breakage git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3476 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 Diffstat:
M | src/help.c | | | 9 | +++++---- |
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/help.c b/src/help.c @@ -127,16 +127,17 @@ void do_help(void (*refresh_func)(void)) line++; break; case NANO_FIRSTLINE_ALTKEY: - line = 0; + if (meta_key) + line = 0; break; case NANO_LASTLINE_ALTKEY: - if (last_line > editwinrows) + if (meta_key && last_line > editwinrows) line = last_line - (editwinrows - 1); break; } - if ((kbinput != ERR && line == old_line) || kbinput == - NANO_REFRESH_KEY) + if ((kbinput != ERR && line == old_line) || (!meta_key && + !func_key && kbinput == NANO_REFRESH_KEY)) goto skip_redisplay; blank_edit();