From: Kim F. Storm Date: Tue, 19 Dec 2006 15:37:45 +0000 (+0000) Subject: Pass on SIGUSR1 and SIGUSR2 to Emacs. X-Git-Tag: emacs-pretest-22.0.92~10 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6a7d16fe7a567cb815c915c8e056bce4dab7ef9f;p=emacs.git Pass on SIGUSR1 and SIGUSR2 to Emacs. --- diff --git a/src/.gdbinit b/src/.gdbinit index a99b17e16fb..6ba71e2f6e2 100644 --- a/src/.gdbinit +++ b/src/.gdbinit @@ -34,6 +34,10 @@ handle 2 noprint pass # 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