mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
58d830884f
a/bash-5.2.032-x86_64-1.txz: Upgraded. d/mercurial-6.8.1-x86_64-1.txz: Upgraded. l/pipewire-1.2.2-x86_64-1.txz: Upgraded. l/spirv-llvm-translator-18.1.3-x86_64-1.txz: Upgraded. n/php-8.3.10-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.php.net/ChangeLog-8.php#8.3.10
51 lines
1.5 KiB
Text
51 lines
1.5 KiB
Text
BASH PATCH REPORT
|
|
=================
|
|
|
|
Bash-Release: 5.2
|
|
Patch-ID: bash52-032
|
|
|
|
Bug-Reported-by: Albert Akchurin <ackbeat@gmail.com>
|
|
Bug-Reference-ID: Mon, 11 Dec 2023 20:41:58 +0600
|
|
Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2023-12/msg00047.html
|
|
|
|
Bug-Description:
|
|
|
|
Patch (apply with `patch -p0'):
|
|
|
|
When printing functions containing coprocesses, the displayed coproc command
|
|
has the word COPROC inserted unconditionally, resulting in function bodies
|
|
that cannot be re-read as input.
|
|
|
|
*** ../bash-5.2-patched/print_cmd.c Mon Aug 21 16:09:44 2023
|
|
--- print_cmd.c Mon Dec 11 15:34:30 2023
|
|
***************
|
|
*** 357,361 ****
|
|
|
|
case cm_coproc:
|
|
! cprintf ("coproc %s ", command->value.Coproc->name);
|
|
skip_this_indent++;
|
|
make_command_string_internal (command->value.Coproc->command);
|
|
--- 357,363 ----
|
|
|
|
case cm_coproc:
|
|
! cprintf ("coproc ");
|
|
! if (command->value.Coproc->command->type != cm_simple)
|
|
! cprintf ("%s ", command->value.Coproc->name);
|
|
skip_this_indent++;
|
|
make_command_string_internal (command->value.Coproc->command);
|
|
|
|
*** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
|
|
--- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
|
|
***************
|
|
*** 26,30 ****
|
|
looks for to find the patch level (for the sccs version string). */
|
|
|
|
! #define PATCHLEVEL 31
|
|
|
|
#endif /* _PATCHLEVEL_H_ */
|
|
--- 26,30 ----
|
|
looks for to find the patch level (for the sccs version string). */
|
|
|
|
! #define PATCHLEVEL 32
|
|
|
|
#endif /* _PATCHLEVEL_H_ */
|