Back that out, as it braks Linux :(

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1172 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2002-04-08 17:48:15 +00:00
parent 108ff58956
commit 70feb4f8e5
3 changed files with 1 additions and 6 deletions

View File

@ -4,8 +4,6 @@ CVS code -
- Allow --tiny and --multibuffer to cooperate (who the heck
would want this is beyond me but ;-). Changes to
configure.ac, global.c, , (David Benbennick).
- FreeBSD compat. Remove KEY_DC from the delete shortcut in
global.c:shortcut_init(), add case for 330 under nano.c:main().
- configure.ac:
- Define NDEBUG to silence asserts (David Benbennick).
- files.c:

View File

@ -453,7 +453,7 @@ void shortcut_init(int unjustify)
nano_mark_msg, NANO_ALT_MARK_KEY, 0, 0, NOVIEW, do_mark);
sc_init_one(&main_list, NANO_DELETE_KEY, _("Delete"),
nano_delete_msg, 0, 0,
nano_delete_msg, 0, KEY_DC,
NANO_CONTROL_D, NOVIEW, do_delete);
sc_init_one(&main_list, NANO_BACKSPACE_KEY, _("Backspace"),

3
nano.c
View File

@ -3332,9 +3332,6 @@ int main(int argc, char *argv[])
case 545: /* Right alt key */
#endif
break;
case 330: /* Delete key in *BSD with keypad() */
do_backspace();
break;
default:
#ifdef DEBUG