1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Renamed input->line

This commit is contained in:
James Booth 2015-01-15 22:55:54 +00:00
parent ad896ef201
commit 22e9be4a5f

View File

@ -74,7 +74,7 @@
static char *win_title;
static char input[INP_WIN_MAX];
static char line[INP_WIN_MAX];
static int inp_size;
#ifdef HAVE_LIBXSS
@ -182,7 +182,7 @@ char*
ui_readline(void)
{
int result = 0;
wint_t ch = inp_get_char(input, &result);
wint_t ch = inp_get_char(line, &result);
_win_handle_switch(ch);
@ -201,7 +201,7 @@ ui_readline(void)
}
if (ch == '\n') {
return input;
return line;
} else {
return NULL;
}