mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
another small lineedit fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
5c2e81bb67
commit
9531f7dad7
@ -429,7 +429,9 @@ static void input_delete(int save)
|
||||
#endif
|
||||
|
||||
memmove(command_ps + j, command_ps + j + 1,
|
||||
(command_len - j + 1) * sizeof(command_ps[0]));
|
||||
/* (command_len + 1 [because of NUL]) - (j + 1)
|
||||
* simplified into (command_len - j) */
|
||||
(command_len - j) * sizeof(command_ps[0]));
|
||||
command_len--;
|
||||
input_end(); /* rewrite new line */
|
||||
cmdedit_set_out_char(' '); /* erase char */
|
||||
|
Loading…
Reference in New Issue
Block a user