diff options
| author | Nick Roberts | 2005-11-16 01:03:35 +0000 |
|---|---|---|
| committer | Nick Roberts | 2005-11-16 01:03:35 +0000 |
| commit | 19b9d1de60043bd63a3f5ca0e06dab6ab10f01df (patch) | |
| tree | 324627e529b8125ca05db9cedff4948fc973c8b2 | |
| parent | 3671718b70e08f9da59c2f4db3e2df09c0ebd113 (diff) | |
| download | emacs-19b9d1de60043bd63a3f5ca0e06dab6ab10f01df.tar.gz emacs-19b9d1de60043bd63a3f5ca0e06dab6ab10f01df.zip | |
Make SIGTSTP work like SIGINT normally does.
| -rw-r--r-- | src/.gdbinit | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/.gdbinit b/src/.gdbinit index aa89531882b..d1365d9aefd 100644 --- a/src/.gdbinit +++ b/src/.gdbinit | |||
| @@ -31,6 +31,9 @@ dir ../lwlib | |||
| 31 | # However, C-z works just as well in that case. | 31 | # However, C-z works just as well in that case. |
| 32 | handle 2 noprint pass | 32 | handle 2 noprint pass |
| 33 | 33 | ||
| 34 | # Make it work like SIGINT normally does. | ||
| 35 | handle SIGTSTP nopass | ||
| 36 | |||
| 34 | # Don't pass SIGALRM to Emacs. This makes problems when | 37 | # Don't pass SIGALRM to Emacs. This makes problems when |
| 35 | # debugging. | 38 | # debugging. |
| 36 | handle SIGALRM ignore | 39 | handle SIGALRM ignore |