diff options
| author | Karoly Lorentey | 2004-07-05 01:15:41 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2004-07-05 01:15:41 +0000 |
| commit | 301f31cf2f699ceecc552a74485ee6dcec9666b5 (patch) | |
| tree | 439f9bda65fca0873f4e3ae0842f1ea318db8f16 /src/keyboard.c | |
| parent | d0cf63f7695c5d5886a3631ea3c03e82d52ca7c2 (diff) | |
| download | emacs-301f31cf2f699ceecc552a74485ee6dcec9666b5.tar.gz emacs-301f31cf2f699ceecc552a74485ee6dcec9666b5.zip | |
Fixed C-c from the controlling terminal.
* src/keyboard.c (interrupt_signal): Don't call fatal_error_signal with
an extra parameter.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-210
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 0ac88f80805..8670308ba08 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -10323,7 +10323,7 @@ interrupt_signal (signalnum) /* If we don't have an argument, */ | |||
| 10323 | { | 10323 | { |
| 10324 | /* If there are no frames there, let's pretend that we are a | 10324 | /* If there are no frames there, let's pretend that we are a |
| 10325 | well-behaving UN*X program and quit. */ | 10325 | well-behaving UN*X program and quit. */ |
| 10326 | fatal_error_signal (getpid (), SIGTERM); | 10326 | fatal_error_signal (SIGTERM); |
| 10327 | } | 10327 | } |
| 10328 | else | 10328 | else |
| 10329 | { | 10329 | { |