From c542b7df94ad8e595b651d275ca9f4588b380911 Mon Sep 17 00:00:00 2001 From: pgen Date: Wed, 22 Jan 2025 19:26:18 +0100 Subject: [PATCH] Fix BS handling It seems that forcing the value of VERASE to 0x08 does not work in all environments, so we need to undo some of the previous commit. --- smenu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/smenu.c b/smenu.c index a0d9b7c..acbd726 100755 --- a/smenu.c +++ b/smenu.c @@ -16203,6 +16203,7 @@ main(int argc, char *argv[]) break; case 0x08: /* ^H */ + case 0x7f: /* BS */ /* backspace/CTRL-H management. */ /* """""""""""""""""""""""""""" */ if (help_mode) -- 2.11.4.GIT