diff options
Diffstat (limited to 'kconfig/nconf.c')
-rw-r--r-- | kconfig/nconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfig/nconf.c b/kconfig/nconf.c index fb6027af..96a6bac0 100644 --- a/kconfig/nconf.c +++ b/kconfig/nconf.c @@ -1051,7 +1051,7 @@ static int do_match(int key, struct match_state *state, int *ans) state->match_direction = FIND_NEXT_MATCH_UP; *ans = get_mext_match(state->pattern, state->match_direction); - } else if (key == KEY_BACKSPACE || key == 127) { + } else if (key == KEY_BACKSPACE || key == 8 || key == 127) { state->pattern[strlen(state->pattern)-1] = '\0'; adj_match_dir(&state->match_direction); } else |