mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Renamed input->line
This commit is contained in:
parent
ad896ef201
commit
22e9be4a5f
@ -74,7 +74,7 @@
|
|||||||
|
|
||||||
static char *win_title;
|
static char *win_title;
|
||||||
|
|
||||||
static char input[INP_WIN_MAX];
|
static char line[INP_WIN_MAX];
|
||||||
static int inp_size;
|
static int inp_size;
|
||||||
|
|
||||||
#ifdef HAVE_LIBXSS
|
#ifdef HAVE_LIBXSS
|
||||||
@ -182,7 +182,7 @@ char*
|
|||||||
ui_readline(void)
|
ui_readline(void)
|
||||||
{
|
{
|
||||||
int result = 0;
|
int result = 0;
|
||||||
wint_t ch = inp_get_char(input, &result);
|
wint_t ch = inp_get_char(line, &result);
|
||||||
|
|
||||||
_win_handle_switch(ch);
|
_win_handle_switch(ch);
|
||||||
|
|
||||||
@ -201,7 +201,7 @@ ui_readline(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (ch == '\n') {
|
if (ch == '\n') {
|
||||||
return input;
|
return line;
|
||||||
} else {
|
} else {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user