commit 108ff58956cfb86c8be327e0c6d5599b2e7688e5
parent 7162e3d68684dff832667fa7db5b4972ae7ad739
Author: Chris Allegretta <chrisa@asty.org>
Date: Mon, 8 Apr 2002 17:44:10 +0000
- FreeBSD compat. Remove KEY_DC from the delete shortcut in global.c:shortcut_init(), add case for 330 under nano.c:main()
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1171 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
3 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -4,6 +4,8 @@ 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:
diff --git a/global.c b/global.c
@@ -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, KEY_DC,
+ nano_delete_msg, 0, 0,
NANO_CONTROL_D, NOVIEW, do_delete);
sc_init_one(&main_list, NANO_BACKSPACE_KEY, _("Backspace"),
diff --git a/nano.c b/nano.c
@@ -3333,6 +3333,9 @@ int main(int argc, char *argv[])
#endif
break;
+ case 330: /* Delete key in *BSD with keypad() */
+ do_backspace();
+ break;
default:
#ifdef DEBUG
fprintf(stderr, "I got %c (%d)!\n", kbinput, kbinput);