Search
j0ke.net Open Build Service
>
Projects
>
J0KE.NET
:
infrastructure
>
bash
> readline-6.0-wrap.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File readline-6.0-wrap.patch of Package bash (Revision 32)
Currently displaying revision
32
,
show latest
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;