From cfbe41aa8ae80d3a6bc4c6c439c4391f0e40f482 Mon Sep 17 00:00:00 2001 From: witekfl Date: Sun, 12 Feb 2006 14:19:39 +0100 Subject: [PATCH] Linux and FreeBSD are not compatible. I prefer Linux --- src/terminal/kbd.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/terminal/kbd.c b/src/terminal/kbd.c index d50147f5..3326fa4b 100644 --- a/src/terminal/kbd.c +++ b/src/terminal/kbd.c @@ -771,12 +771,9 @@ set_kbd_event(struct term_event *ev, int key, int modifier) key = KBD_TAB; break; -/* Free BSD uses ASCII_DEL on console */ case ASCII_BS: - key = KBD_BS; - break; case ASCII_DEL: - key = KBD_DEL; + key = KBD_BS; break; case ASCII_LF: -- 2.11.4.GIT