From b0776d8c49ab4310fa056ce1033985996c5b9807 Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Tue, 6 Feb 2018 16:22:34 -0500 Subject: Bash-4.4 patch 19 --- lib/readline/display.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/readline/display.c b/lib/readline/display.c index 41fb0531..2d2e768a 100644 --- a/lib/readline/display.c +++ b/lib/readline/display.c @@ -771,7 +771,9 @@ rl_redisplay () appear in the first and last lines of the prompt */ wadjust = (newlines == 0) ? prompt_invis_chars_first_line - : ((newlines == prompt_lines_estimate) ? wrap_offset : prompt_invis_chars_first_line); + : ((newlines == prompt_lines_estimate) + ? (wrap_offset - prompt_invis_chars_first_line) + : 0); /* fix from Darin Johnson for prompt string with invisible characters that is longer than the screen width. The -- cgit v1.2.1