diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-07-12 11:13:47 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-07-12 11:13:47 +0000 |
commit | 20505336e1666c028d34ba1a5ad43182bfc94330 (patch) | |
tree | 8276421266383ddf837d2f1cd82e77177835606e /src/process.c | |
parent | 9327f1343966a9131fa8f8561f8dad0be03bbd39 (diff) | |
download | emacs-20505336e1666c028d34ba1a5ad43182bfc94330.tar.gz |
(process_send_signal): Add abort call.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 7c3b1779496..771a4e1fe62 100644 --- a/src/process.c +++ b/src/process.c @@ -5117,7 +5117,9 @@ process_send_signal (process, signo, current_group, nomsg) #endif /* ! defined (TCGETA) */ #endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */ #endif /* ! defined HAVE_TERMIOS */ -#endif /* ! defined (SIGNALS_VIA_CHARACTERS) */ + abort (); + /* The code above always returns from the function. */ +#endif /* defined (SIGNALS_VIA_CHARACTERS) */ #ifdef TIOCGPGRP /* Get the pgrp using the tty itself, if we have that. |