Mercurial > emacs
changeset 60348:84d948a78a71
(Fkill_emacs): Use EXIT_SUCCESS;
no longer special-case VMS. Add bogus return value.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Thu, 03 Mar 2005 15:34:52 +0000 |
parents | 3375018deeb3 |
children | 9e8988a7fb5f |
files | src/emacs.c |
diffstat | 1 files changed, 2 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/emacs.c Thu Mar 03 13:12:47 2005 +0000 +++ b/src/emacs.c Thu Mar 03 15:34:52 2005 +0000 @@ -2052,14 +2052,9 @@ 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; }