mirror of git://git.sv.gnu.org/nano.git
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
This commit is contained in:
parent
7fdbd05b41
commit
1c27d3e875
6
nano.c
6
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 */
|
/* Hack, make insert key do something useful, like insert file */
|
||||||
if (kbinput == KEY_IC) {
|
if (kbinput == KEY_IC) {
|
||||||
|
#else
|
||||||
|
if (0) {
|
||||||
|
#endif
|
||||||
do_insertkey:
|
do_insertkey:
|
||||||
|
|
||||||
#ifdef ENABLE_MULTIBUFFER
|
#ifdef ENABLE_MULTIBUFFER
|
||||||
|
@ -2982,7 +2986,7 @@ int main(int argc, char *argv[])
|
||||||
do_insertfile(0);
|
do_insertfile(0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
keyhandled = 1;
|
keyhandled = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Last gasp, stuff that's not in the main lists */
|
/* Last gasp, stuff that's not in the main lists */
|
||||||
|
|
Loading…
Reference in New Issue