mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Retire readinput()
This commit is contained in:
parent
4fbb36b66b
commit
6dc4176f57
18
nnn.c
18
nnn.c
|
@ -1327,20 +1327,6 @@ xreadline(char *fname, char *prompt)
|
||||||
return g_buf;
|
return g_buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *
|
|
||||||
readinput(void)
|
|
||||||
{
|
|
||||||
cleartimeout();
|
|
||||||
echo();
|
|
||||||
curs_set(TRUE);
|
|
||||||
memset(g_buf, 0, NAME_MAX + 1);
|
|
||||||
wgetnstr(stdscr, g_buf, NAME_MAX);
|
|
||||||
noecho();
|
|
||||||
curs_set(FALSE);
|
|
||||||
settimeout();
|
|
||||||
return g_buf[0] ? g_buf : NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Updates out with "dir/name or "/name"
|
* Updates out with "dir/name or "/name"
|
||||||
* Returns the number of bytes copied including the terminating NULL byte
|
* Returns the number of bytes copied including the terminating NULL byte
|
||||||
|
@ -2833,9 +2819,7 @@ nochange:
|
||||||
presel = FILTER;
|
presel = FILTER;
|
||||||
goto begin;
|
goto begin;
|
||||||
case SEL_CDBM:
|
case SEL_CDBM:
|
||||||
printprompt("key: ");
|
tmp = xreadline(NULL, "key: ");
|
||||||
tmp = readinput();
|
|
||||||
clearprompt();
|
|
||||||
if (tmp == NULL || tmp[0] == '\0')
|
if (tmp == NULL || tmp[0] == '\0')
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue