462fb2
			     BASH PATCH REPORT
462fb2
			     =================
462fb2
462fb2
Bash-Release:	4.2
462fb2
Patch-ID:	bash42-008
462fb2
462fb2
Bug-Reported-by:	Doug McMahon <mc2man@optonline.net>
462fb2
Bug-Reference-ID:	<1299441211.2535.11.camel@doug-XPS-M1330>
462fb2
Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2011-03/msg00050.html
462fb2
462fb2
Bug-Description:
462fb2
462fb2
Bash-4.2 does not attempt to save the shell history on receipt of a
462fb2
terminating signal that is handled synchronously.  Unfortunately, the
462fb2
`close' button on most X11 terminal emulators sends SIGHUP, which
462fb2
kills the shell.
462fb2
462fb2
This is a very small patch to save the history in the case that an
462fb2
interactive shell receives a SIGHUP or SIGTERM while in readline and
462fb2
reading a command.
462fb2
462fb2
The next version of bash will do this differently.
462fb2
462fb2
Patch (apply with `patch -p0'):
462fb2
462fb2
*** ../bash-4.2-patched/sig.c	Tue Nov 23 08:21:22 2010
462fb2
--- sig.c	Tue Mar  8 21:28:32 2011
462fb2
***************
462fb2
*** 47,50 ****
462fb2
--- 47,51 ----
462fb2
  #if defined (READLINE)
462fb2
  #  include "bashline.h"
462fb2
+ #  include <readline/readline.h>
462fb2
  #endif
462fb2
  
462fb2
***************
462fb2
*** 63,66 ****
462fb2
--- 64,68 ----
462fb2
  extern int history_lines_this_session;
462fb2
  #endif
462fb2
+ extern int no_line_editing;
462fb2
  
462fb2
  extern void initialize_siglist ();
462fb2
***************
462fb2
*** 506,510 ****
462fb2
  #if defined (HISTORY)
462fb2
        /* XXX - will inhibit history file being written */
462fb2
!       history_lines_this_session = 0;
462fb2
  #endif
462fb2
        terminate_immediately = 0;
462fb2
--- 508,515 ----
462fb2
  #if defined (HISTORY)
462fb2
        /* XXX - will inhibit history file being written */
462fb2
! #  if defined (READLINE)
462fb2
!       if (interactive_shell == 0 || interactive == 0 || (sig != SIGHUP && sig != SIGTERM) || no_line_editing || (RL_ISSTATE (RL_STATE_READCMD) == 0))
462fb2
! #  endif
462fb2
!         history_lines_this_session = 0;
462fb2
  #endif
462fb2
        terminate_immediately = 0;
462fb2
*** ../bash-4.2-patched/patchlevel.h	Sat Jun 12 20:14:48 2010
462fb2
--- patchlevel.h	Thu Feb 24 21:41:34 2011
462fb2
***************
462fb2
*** 26,30 ****
462fb2
     looks for to find the patch level (for the sccs version string). */
462fb2
  
462fb2
! #define PATCHLEVEL 7
462fb2
  
462fb2
  #endif /* _PATCHLEVEL_H_ */
462fb2
--- 26,30 ----
462fb2
     looks for to find the patch level (for the sccs version string). */
462fb2
  
462fb2
! #define PATCHLEVEL 8
462fb2
  
462fb2
  #endif /* _PATCHLEVEL_H_ */