aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThien-Thi Nguyen2005-03-03 15:37:29 +0000
committerThien-Thi Nguyen2005-03-03 15:37:29 +0000
commitfa439170423ac8a827952b0e3a06f26e5e30e857 (patch)
treea9b98458f3fc400a9fc61eefd24dc0fe2227d4af /src
parentd245ff23c3af7682caca6e19fce166d6b0d89659 (diff)
downloademacs-fa439170423ac8a827952b0e3a06f26e5e30e857.tar.gz
emacs-fa439170423ac8a827952b0e3a06f26e5e30e857.zip
(Fkill_emacs): Use EXIT_SUCCESS;
no longer special-case VMS. Add bogus return value.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/emacs.c9
2 files changed, 7 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e341ac65577..67215ee5176 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12005-03-03 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * emacs.c (Fkill_emacs): Use EXIT_SUCCESS;
4 no longer special-case VMS. Add bogus return value.
5
12005-03-02 Kim F. Storm <storm@cua.dk> 62005-03-02 Kim F. Storm <storm@cua.dk>
2 7
3 * dispextern.h (XASSERTS): Define to 0 if not already defined. 8 * dispextern.h (XASSERTS): Define to 0 if not already defined.
diff --git a/src/emacs.c b/src/emacs.c
index cdc80ae0893..75196d83159 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -2052,14 +2052,9 @@ all of which are called before Emacs is actually killed. */)
2052 if (STRINGP (Vauto_save_list_file_name)) 2052 if (STRINGP (Vauto_save_list_file_name))
2053 unlink (SDATA (Vauto_save_list_file_name)); 2053 unlink (SDATA (Vauto_save_list_file_name));
2054 2054
2055 exit (INTEGERP (arg) ? XINT (arg) 2055 exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS);
2056#ifdef VMS
2057 : 1
2058#else
2059 : 0
2060#endif
2061 );
2062 /* NOTREACHED */ 2056 /* NOTREACHED */
2057 return 0;
2063} 2058}
2064 2059
2065 2060