From 7df4f2e86b3aaaa5b1c084d66dac2e02d93b1734 Mon Sep 17 00:00:00 2001 From: Tim Kourt Date: Fri, 9 Nov 2018 13:43:13 -0800 Subject: [PATCH] client: Fix display refresh after agent prompt The line count was one line off after the Agent prompt, thus making the command output to scroll up on each refresh. --- client/display.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/client/display.c b/client/display.c index ec33f280..0b7f1b6b 100644 --- a/client/display.c +++ b/client/display.c @@ -568,10 +568,6 @@ void display_agent_prompt_release(const char *label) agent_saved_input = NULL; rl_set_prompt(IWD_PROMPT); - - rl_forced_update_display(); - - display("\r"); } void display_quit(void)