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

Zheng Bao (zheng.bao@amd.com) gerrit at coreboot.org
Tue Oct 23 04:28:43 CEST 2012


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

-gerrit

commit f7bbd05d484c638b6af28ecad19c408fb917add3
Author: Zheng Bao <fishbaozi at gmail.com>
Date:   Tue Oct 23 11:48:36 2012 +0800

    kconfig: Some terms or curses libraries treat backspace as 0x08
    
    Change-Id: Ie4e4a2f0d68643a8f46d24ee7bd1b953e9fe14a5
    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 38585f0..ef4569f 100644
--- a/util/kconfig/lxdialog/inputbox.c
+++ b/util/kconfig/lxdialog/inputbox.c
@@ -127,6 +127,7 @@ do_resize:
 				continue;
 			case KEY_BACKSPACE:
 			case 127:
+			case '\b':
 				if (input_x || scroll) {
 					wattrset(dialog, dlg.inputbox.atr);
 					if (!input_x) {




More information about the coreboot mailing list