nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 1c27d3e875a8cb80d8c5223522617b91252a78b0
parent 7fdbd05b413364bb0f1cb017926f0b75a1605e5e
Author: Chris Allegretta <chrisa@asty.org>
Date:   Tue,  2 Oct 2001 02:56:45 +0000

nano.c:main() - Fix the KEY_IC being undefined when using slang


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@808 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Mnano.c | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/nano.c b/nano.c @@ -2972,8 +2972,12 @@ int main(int argc, char *argv[]) } +#ifndef USE_SLANG /* Hack, make insert key do something useful, like insert file */ if (kbinput == KEY_IC) { +#else + if (0) { +#endif do_insertkey: #ifdef ENABLE_MULTIBUFFER @@ -2982,7 +2986,7 @@ int main(int argc, char *argv[]) do_insertfile(0); #endif - keyhandled = 1; + keyhandled = 1; } /* Last gasp, stuff that's not in the main lists */