[coreboot-gerrit] New patch to review for coreboot: kconfig: Some terms or curses libraries treat backspace as 0x08

Zheng Bao (zheng.bao@amd.com) gerrit at coreboot.org
Sat Sep 26 10:24:55 CET 2015


Zheng Bao (zheng.bao at amd.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11725

-gerrit

commit 719e295d8fdde1f93c31ad13b3e5f3bf031a4766
Author: zbao <fishbaozi at gmail.com>
Date:   Sat Sep 26 06:24:09 2015 -0400

    kconfig: Some terms or curses libraries treat backspace as 0x08
    
    Change-Id: I8e4ea493afa88019fd299651af1df2fb992ab97b
    Signed-off-by: Zheng Bao <zheng.bao at amd.com>
    Signed-off-by: Zheng Bao <fishbaozi at gmail.com>
---
 util/kconfig/lxdialog/inputbox.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/util/kconfig/lxdialog/inputbox.c b/util/kconfig/lxdialog/inputbox.c
index d58de1d..2ec124e 100644
--- a/util/kconfig/lxdialog/inputbox.c
+++ b/util/kconfig/lxdialog/inputbox.c
@@ -127,6 +127,7 @@ do_resize:
 				break;
 			case KEY_BACKSPACE:
 			case 127:
+			case '\b':
 				if (pos) {
 					wattrset(dialog, dlg.inputbox.atr);
 					if (input_x == 0) {



More information about the coreboot-gerrit mailing list