Explorar el Código

Simplify get_input()

master
Arun Prakash Jana hace 4 años
padre
commit
4a2d978630
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: A75979F35C080412
Se han modificado 1 ficheros con 8 adiciones y 8 borrados
  1. +8
    -8
      src/nnn.c

+ 8
- 8
src/nnn.c Ver fichero

@@ -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;


Cargando…
Cancelar
Guardar