2
1

bash31-012 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. BASH PATCH REPORT
  2. =================
  3. Bash-Release: 3.1
  4. Patch-ID: bash31-012
  5. Bug-Reported-by: Alexander Kshevetskiy <alex@dgap.mipt.ru>
  6. Bug-Reference-ID: <308374997.20060124175849@dgap.mipt.ru>
  7. Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2006-01/msg00097.html
  8. Bug-Description:
  9. There is a parsing problem involving parentheses in assignment statements
  10. that causes words to be terminated prematurely.
  11. Patch:
  12. *** bash-3.1/parse.y Fri Nov 11 23:14:18 2005
  13. --- bash-3.1/parse.y Wed Jan 25 14:55:18 2006
  14. ***************
  15. *** 3579,3583 ****
  16. all_digit_token = 0;
  17. compound_assignment = 1;
  18. ! #if 0
  19. goto next_character;
  20. #else
  21. --- 3584,3588 ----
  22. all_digit_token = 0;
  23. compound_assignment = 1;
  24. ! #if 1
  25. goto next_character;
  26. #else
  27. *** bash-3.1/patchlevel.h Wed Jul 20 13:58:20 2005
  28. --- bash-3.1/patchlevel.h Wed Dec 7 13:48:42 2005
  29. ***************
  30. *** 26,30 ****
  31. looks for to find the patch level (for the sccs version string). */
  32. ! #define PATCHLEVEL 11
  33. #endif /* _PATCHLEVEL_H_ */
  34. --- 26,30 ----
  35. looks for to find the patch level (for the sccs version string). */
  36. ! #define PATCHLEVEL 12
  37. #endif /* _PATCHLEVEL_H_ */