# HG changeset patch # User Kim F. Storm # Date 1166542665 0 # Node ID 8079b89022bf0f1cffac995a4ed4d6d12c32d29d # Parent 526fb5e934a5d6047547cd748a28427426cb567e Pass on SIGUSR1 and SIGUSR2 to Emacs. diff -r 526fb5e934a5 -r 8079b89022bf src/.gdbinit --- a/src/.gdbinit Tue Dec 19 15:37:34 2006 +0000 +++ b/src/.gdbinit Tue Dec 19 15:37:45 2006 +0000 @@ -34,6 +34,10 @@ # Make it work like SIGINT normally does. handle SIGTSTP nopass +# Pass on user signals +handle SIGUSR1 noprint pass +handle SIGUSR2 noprint pass + # Don't pass SIGALRM to Emacs. This makes problems when # debugging. handle SIGALRM ignore