1
1

tweaks: delete a function that hasn't been used since 2005

Этот коммит содержится в:
Benno Schulenberg 2017-04-09 13:31:02 +02:00
родитель 6e73805a0d
Коммит 999d99c6e4

Просмотреть файл

@ -1445,26 +1445,6 @@ int get_control_kbinput(int kbinput)
return retval;
}
/* Put the output-formatted characters in output back into the keystroke
* buffer, so that they can be parsed and displayed as output again. */
void unparse_kbinput(char *output, size_t output_len)
{
int *input;
size_t i;
if (output_len == 0)
return;
input = (int *)nmalloc(output_len * sizeof(int));
for (i = 0; i < output_len; i++)
input[i] = (int)output[i];
unget_input(input, output_len);
free(input);
}
/* Read in a stream of characters verbatim, and return the length of the
* string in kbinput_len. Assume nodelay(win) is FALSE. */
int *get_verbatim_kbinput(WINDOW *win, size_t *kbinput_len)