1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-09 21:40:42 +00:00

Clarify code intent of emergencyexit().

This commit is contained in:
Renaud 2015-07-17 10:48:17 +08:00
parent 2522a858c1
commit c10b525fb5

2
main.c
View File

@ -107,7 +107,7 @@ extern unsigned _stklen = 32766;
static void emergencyexit(int signr) static void emergencyexit(int signr)
{ {
quickexit(FALSE, 0); quickexit(FALSE, 0);
quit(TRUE, 0); quit( TRUE, 0) ; /* If quickexit fails (to save changes), do a force quit */
} }
#endif #endif