92426585d7
Copy from Base:System/bash based on submit request 18772 from user coolo OBS-URL: https://build.opensuse.org/request/show/18772 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bash?expand=0&rev=43
17 lines
534 B
Diff
17 lines
534 B
Diff
Index: lib/readline/display.c
|
|
===================================================================
|
|
--- lib/readline/display.c.orig
|
|
+++ lib/readline/display.c
|
|
@@ -714,7 +714,10 @@ rl_redisplay ()
|
|
inv_lbreaks[++newlines] = temp;
|
|
#if defined (HANDLE_MULTIBYTE)
|
|
if (MB_CUR_MAX > 1 && rl_byte_oriented == 0 && prompt_multibyte_chars > 0)
|
|
- lpos -= _rl_col_width (local_prompt, n0, num);
|
|
+ {
|
|
+ if (local_prompt_len > 0)
|
|
+ lpos -= _rl_col_width (local_prompt, n0, num);
|
|
+ }
|
|
else
|
|
#endif
|
|
lpos -= _rl_screenwidth;
|