From 4a2d978630333a72a23571c323d9a005c2cf57c1 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 31 May 2020 20:10:11 +0530 Subject: [PATCH] Simplify get_input() --- src/nnn.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 98f6d2ac..de172e27 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -822,22 +822,22 @@ static inline bool xconfirm(int c) static int get_input(const char *prompt) { - int r; - if (prompt) printmsg(prompt); cleartimeout(); + + int r = getch(); + #ifdef KEY_RESIZE - do { - r = getch(); - if (r == KEY_RESIZE && prompt) { + while (r == KEY_RESIZE) { + if (prompt) { clearoldprompt(); xlines = LINES; printmsg(prompt); } - } while (r == KEY_RESIZE); -#else - r = getch(); + + r = getch(); + } #endif settimeout(); return r;