mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 06:50:46 -08:00
Call abort() instead of exit() for convenience when debugging.
Copied from Perforce Change: 182495 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
6f356edfb1
commit
fc5666204f
1 changed files with 1 additions and 1 deletions
|
|
@ -328,7 +328,7 @@ void verror(const char *format, va_list args)
|
|||
vfprintf(stderr, format, args);
|
||||
fprintf(stderr, "\n");
|
||||
fflush(stderr); /* make sure the message is output */
|
||||
exit(1);
|
||||
abort();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue