bash30-005 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. *** bash-3.0/lib/readline/misc.c Wed Jul 7 08:56:32 2004
  2. --- bash/lib/readline/misc.c Sat Aug 7 22:38:53 2004
  3. ***************
  4. *** 277,286 ****
  5. _rl_saved_line_for_history->data = (char *)rl_undo_list;
  6. }
  7. - else if (STREQ (rl_line_buffer, _rl_saved_line_for_history->line) == 0)
  8. - {
  9. - free (_rl_saved_line_for_history->line);
  10. - _rl_saved_line_for_history->line = savestring (rl_line_buffer);
  11. - _rl_saved_line_for_history->data = (char *)rl_undo_list; /* XXX possible memleak */
  12. - }
  13. return 0;
  14. --- 277,280 ----
  15. *** bash-3.0/lib/readline/vi_mode.c Tue Jul 13 14:08:27 2004
  16. --- bash/lib/readline/vi_mode.c Tue Aug 17 00:12:09 2004
  17. ***************
  18. *** 273,280 ****
  19. --- 273,282 ----
  20. {
  21. case '?':
  22. + _rl_free_saved_history_line ();
  23. rl_noninc_forward_search (count, key);
  24. break;
  25. case '/':
  26. + _rl_free_saved_history_line ();
  27. rl_noninc_reverse_search (count, key);
  28. break;
  29. *** bash-3.0/patchlevel.h Wed Aug 22 08:05:39 2001
  30. --- bash/patchlevel.h Thu Sep 2 15:04:32 2004
  31. ***************
  32. *** 26,30 ****
  33. looks for to find the patch level (for the sccs version string). */
  34. ! #define PATCHLEVEL 4
  35. #endif /* _PATCHLEVEL_H_ */
  36. --- 26,30 ----
  37. looks for to find the patch level (for the sccs version string). */
  38. ! #define PATCHLEVEL 5
  39. #endif /* _PATCHLEVEL_H_ */