diff --git a/src/prompt.c b/src/prompt.c index ff0d638b..8b4b3139 100644 --- a/src/prompt.c +++ b/src/prompt.c @@ -722,6 +722,10 @@ int do_yesno_prompt(bool all, const char *msg) response = 0; else if (all && strchr(allstr, kbinput) != NULL) response = 2; + else if (strchr("Yy", kbinput) != NULL) + response = 1; + else if (strchr("Nn", kbinput) != NULL) + response = 0; else if (func_from_key(&kbinput) == do_cancel) response = -1; #ifdef ENABLE_MOUSE