1
Fork 0
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:
Gareth Rees 2013-06-04 15:37:12 +01:00
parent 6f356edfb1
commit fc5666204f

View file

@ -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();
}