recipes: shells/bash: Apply official patches up to level 016
[dragora.git] / patches / bash / bash51-015
blob5ae65811ad7e3e3182facc2874ff1193407a2368
1                              BASH PATCH REPORT
2                              =================
4 Bash-Release:   5.1
5 Patch-ID:       bash51-015
7 Bug-Reported-by:        Volodymyr Prodan <vovcat@gmail.com>
8 Bug-Reference-ID:
9 Bug-Reference-URL:      https://savannah.gnu.org/patch/?10076
11 Bug-Description:
13 Patch (apply with `patch -p0'):
15 There are some characters (e.g., cyrillic) that can't be displayed using
16 certain single-byte encodings (e.g., cp1251) because the negative signed
17 int is interpreted as EOF and not displayed.
19 *** ../bash-20210524/lib/readline/display.c     2021-03-16 18:12:20.000000000 -0400
20 --- lib/readline/display.c      2021-06-07 16:53:08.000000000 -0400
21 ***************
22 *** 1599,1603 ****
23   
24     for (cur_face = FACE_NORMAL, i = 0; i < n; i++)
25 !     putc_face (str[i], face[i], &cur_face);
26     putc_face (EOF, FACE_NORMAL, &cur_face);
27   }
28 --- 1599,1603 ----
29   
30     for (cur_face = FACE_NORMAL, i = 0; i < n; i++)
31 !     putc_face ((unsigned char) str[i], face[i], &cur_face);
32     putc_face (EOF, FACE_NORMAL, &cur_face);
33   }
35 *** ../bash-5.1/patchlevel.h    2020-06-22 14:51:03.000000000 -0400
36 --- patchlevel.h        2020-10-01 11:01:28.000000000 -0400
37 ***************
38 *** 26,30 ****
39      looks for to find the patch level (for the sccs version string). */
40   
41 ! #define PATCHLEVEL 14
42   
43   #endif /* _PATCHLEVEL_H_ */
44 --- 26,30 ----
45      looks for to find the patch level (for the sccs version string). */
46   
47 ! #define PATCHLEVEL 15
48   
49   #endif /* _PATCHLEVEL_H_ */