client: Rename window change signal for clarity

This commit is contained in:
Tim Kourt 2020-04-09 15:51:45 -07:00 committed by Denis Kenzior
parent 83128c797f
commit 9eeaedf189
1 changed files with 6 additions and 4 deletions

View File

@ -40,7 +40,7 @@
#define IWD_PROMPT COLOR_GREEN "[iwd]" COLOR_OFF "# " #define IWD_PROMPT COLOR_GREEN "[iwd]" COLOR_OFF "# "
#define LINE_LEN 81 #define LINE_LEN 81
static struct l_signal *resize_signal; static struct l_signal *window_change_signal;
static struct l_io *io; static struct l_io *io;
static char dashed_line[LINE_LEN] = { [0 ... LINE_LEN - 2] = '-' }; static char dashed_line[LINE_LEN] = { [0 ... LINE_LEN - 2] = '-' };
static char empty_line[LINE_LEN] = { [0 ... LINE_LEN - 2] = ' ' }; static char empty_line[LINE_LEN] = { [0 ... LINE_LEN - 2] = ' ' };
@ -634,7 +634,7 @@ void display_quit(void)
rl_crlf(); rl_crlf();
} }
static void signal_handler(void *user_data) static void window_change_signal_handler(void *user_data)
{ {
if (display_refresh.cmd) if (display_refresh.cmd)
display_refresh_reset(); display_refresh_reset();
@ -678,7 +678,9 @@ void display_init(void)
setlinebuf(stdout); setlinebuf(stdout);
resize_signal = l_signal_create(SIGWINCH, signal_handler, NULL, NULL); window_change_signal =
l_signal_create(SIGWINCH, window_change_signal_handler, NULL,
NULL);
rl_attempted_completion_function = command_completion; rl_attempted_completion_function = command_completion;
rl_completion_display_matches_hook = display_completion_matches; rl_completion_display_matches_hook = display_completion_matches;
@ -708,7 +710,7 @@ void display_exit(void)
l_io_destroy(io); l_io_destroy(io);
l_signal_remove(resize_signal); l_signal_remove(window_change_signal);
if (history_path) if (history_path)
write_history(history_path); write_history(history_path);