From: Chet Ramey Date: Fri, 1 Jun 2018 14:17:06 +0000 (-0400) Subject: readline-7.0 patch 4 X-Git-Tag: readline-8.0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=457e4fbeb977ffe065dc2ba05a0ebc4000b32065;p=thirdparty%2Freadline.git readline-7.0 patch 4 --- diff --git a/display.c b/display.c index 41fb053..2d2e768 100644 --- a/display.c +++ b/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 diff --git a/patchlevel b/patchlevel index ce3e355..626a945 100644 --- a/patchlevel +++ b/patchlevel @@ -1,3 +1,3 @@ # Do not edit -- exists only for use by patch -3 +4