mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Rework readmore(), replace goto with a switch
This commit is contained in:
parent
ab0c9e5921
commit
3c45733f47
27
noice.c
27
noice.c
|
@ -367,26 +367,26 @@ readln(void)
|
|||
int
|
||||
readmore(char **str)
|
||||
{
|
||||
int c;
|
||||
int i;
|
||||
int c, ret = 0;
|
||||
size_t i;
|
||||
char *ln = *str;
|
||||
int ret = 0;
|
||||
|
||||
if (ln != NULL)
|
||||
i = strlen(ln);
|
||||
else
|
||||
i = 0;
|
||||
|
||||
DPRINTF_D(i);
|
||||
|
||||
curs_set(TRUE);
|
||||
|
||||
c = getch();
|
||||
if (c == KEY_ENTER || c == '\r') {
|
||||
switch (c) {
|
||||
case KEY_ENTER:
|
||||
case '\r':
|
||||
ret = 1;
|
||||
goto out;
|
||||
}
|
||||
if (c == KEY_BACKSPACE || c == CONTROL('H')) {
|
||||
break;
|
||||
case KEY_BACKSPACE:
|
||||
case CONTROL('H'):
|
||||
i--;
|
||||
if (i > 0) {
|
||||
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
|
||||
|
@ -395,13 +395,14 @@ readmore(char **str)
|
|||
free(ln);
|
||||
ln = NULL;
|
||||
}
|
||||
goto out;
|
||||
}
|
||||
ln = xrealloc(ln, (i + 2) * sizeof(*ln));
|
||||
ln[i] = c;
|
||||
break;
|
||||
default:
|
||||
i++;
|
||||
ln = xrealloc(ln, (i + 1) * sizeof(*ln));
|
||||
ln[i - 1] = c;
|
||||
ln[i] = '\0';
|
||||
out:
|
||||
}
|
||||
|
||||
curs_set(FALSE);
|
||||
|
||||
*str = ln;
|
||||
|
|
Loading…
Reference in a new issue