diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/client.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/client.c b/client/client.c index 424e119..f1c73c4 100644 --- a/client/client.c +++ b/client/client.c @@ -127,7 +127,9 @@ void input_start_list(void) /* Leave the currently edited line and make space for listing */ { _rl_move_vert(_rl_vis_botlin); +#ifdef HAVE_RL_CRLF rl_crlf(); +#endif } void @@ -155,7 +157,9 @@ input_complete(int arg, int key) break; default: complete_flag = 1; +#ifdef HAVE_RL_DING rl_ding(); +#endif } return 0; } |