From: David Lawrence Ramsey Date: Sat, 6 May 2006 02:51:33 +0000 (+0000) Subject: fix do_help() meta key breakage X-Git-Tag: v1.3.12~204 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=90b60edc3fc3ca82d3e5ee71255bae17fbcda0d8;p=nano.git fix do_help() meta key breakage git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3476 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/help.c b/src/help.c index a48b7232..3ca686b2 100644 --- 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();