1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00

Delete in middle of input

This commit is contained in:
James Booth 2012-07-08 02:52:46 +01:00
parent 15a87f0abb
commit 2d8c21b3ec

View File

@ -196,8 +196,8 @@ static int _handle_edit(const int ch, char *input, int *size)
(*size)--;
// if in middle, delete and shift chars left
} else if (inp_x > 1 && inp_x <= *size) {
for (i = inp_x-1; i < *size; i++)
} else if (inp_x > 0 && inp_x < *size) {
for (i = inp_x; i < *size; i++)
input[i-1] = input[i];
(*size)--;