1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(Fkill_emacs): Use EXIT_SUCCESS;

no longer special-case VMS.  Add bogus return value.
This commit is contained in:
Thien-Thi Nguyen 2005-03-03 15:37:29 +00:00
parent d245ff23c3
commit fa43917042
2 changed files with 7 additions and 7 deletions

View file

@ -1,3 +1,8 @@
2005-03-03 Thien-Thi Nguyen <ttn@gnu.org>
* emacs.c (Fkill_emacs): Use EXIT_SUCCESS;
no longer special-case VMS. Add bogus return value.
2005-03-02 Kim F. Storm <storm@cua.dk>
* dispextern.h (XASSERTS): Define to 0 if not already defined.

View file

@ -2052,14 +2052,9 @@ all of which are called before Emacs is actually killed. */)
if (STRINGP (Vauto_save_list_file_name))
unlink (SDATA (Vauto_save_list_file_name));
exit (INTEGERP (arg) ? XINT (arg)
#ifdef VMS
: 1
#else
: 0
#endif
);
exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS);
/* NOTREACHED */
return 0;
}