summaryrefslogtreecommitdiffstats
path: root/src/c_input.c
diff options
context:
space:
mode:
authorsalad <fmoenne-@student.le-101.fr>2020-09-21 17:29:35 +0200
committersalad <fmoenne-@student.le-101.fr>2020-09-21 17:29:35 +0200
commita61be744a8e1beef9f90b57de4c493b034b2ffa1 (patch)
tree1cbef09daf675e082b420ec95458c0e4edb4fddf /src/c_input.c
parentDEL MULTILIGNEED (diff)
download42-minishell-a61be744a8e1beef9f90b57de4c493b034b2ffa1.tar.gz
42-minishell-a61be744a8e1beef9f90b57de4c493b034b2ffa1.tar.bz2
42-minishell-a61be744a8e1beef9f90b57de4c493b034b2ffa1.tar.xz
42-minishell-a61be744a8e1beef9f90b57de4c493b034b2ffa1.tar.zst
42-minishell-a61be744a8e1beef9f90b57de4c493b034b2ffa1.zip
line curs lesgo
Diffstat (limited to 'src/c_input.c')
-rw-r--r--src/c_input.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/c_input.c b/src/c_input.c
index 37f7b66..37412bd 100644
--- a/src/c_input.c
+++ b/src/c_input.c
@@ -87,22 +87,21 @@ int16_t
int32_t pos;
pos = -1;
- if (((tcaps->cpos + plen) % (tcaps->ws.ws_col)) == 0
- && tcaps->cpos >= 1)
+ if (tcaps->cpos >= 1)
{
- *line = c_delchar(*line, tcaps->cpos);
- tputs(tgetstr("up", NULL), 1, ft_putchar);
- while(++pos <= (tcaps->ws.ws_col))
- tputs(tgetstr("nd", NULL), 1, ft_putchar);
+ if (((tcaps->cpos + plen) % (tcaps->ws.ws_col)) == 0)
+ {
+ tputs(tgetstr("up", NULL), 1, ft_putchar);
+ while(++pos <= (tcaps->ws.ws_col))
+ tputs(tgetstr("nd", NULL), 1, ft_putchar);
+ }
+ else
+ {
+ tputs(tgetstr("le", NULL), 1, ft_putchar);
+ }
tputs(tgetstr("dc", NULL), 1, ft_putchar);
- tcaps->cpos--;
- }
- else if (tcaps->cpos >= 1)
- {
*line = c_delchar(*line, tcaps->cpos);
tcaps->cpos--;
- tputs(tgetstr("le", NULL), 1, ft_putchar);
- tputs(tgetstr("dc", NULL), 1, ft_putchar);
}
return (1);
}