mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Use do-while instead of while
This commit is contained in:
parent
681b22d5c7
commit
feec63ebb3
|
@ -712,20 +712,20 @@ static void printinfoln(const char *str)
|
|||
|
||||
static int get_input(const char *prompt)
|
||||
{
|
||||
int r = KEY_RESIZE;
|
||||
int r;
|
||||
|
||||
if (prompt)
|
||||
printprompt(prompt);
|
||||
cleartimeout();
|
||||
#ifdef KEY_RESIZE
|
||||
while (r == KEY_RESIZE) {
|
||||
do {
|
||||
r = getch();
|
||||
if (r == KEY_RESIZE && prompt) {
|
||||
clearoldprompt();
|
||||
xlines = LINES;
|
||||
printprompt(prompt);
|
||||
}
|
||||
};
|
||||
} while (r == KEY_RESIZE);
|
||||
#else
|
||||
r = getch();
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue