]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/patches/bash/bash51-015
mpd: Update to 0.23.8
[people/pmueller/ipfire-2.x.git] / src / patches / bash / bash51-015
CommitLineData
d675dade
AB
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 5.1
5Patch-ID: bash51-015
6
7Bug-Reported-by: Volodymyr Prodan <vovcat@gmail.com>
8Bug-Reference-ID:
9Bug-Reference-URL: https://savannah.gnu.org/patch/?10076
10
11Bug-Description:
12
13Patch (apply with `patch -p0'):
14
15There are some characters (e.g., cyrillic) that can't be displayed using
16certain single-byte encodings (e.g., cp1251) because the negative signed
17int is interpreted as EOF and not displayed.
18
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 }
34
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_ */