bash51-015 1.4 KB

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