changeset 9132:b2ca75d3a5cb

(Fkill_emacs): Use type test macros.
author Karl Heuer <kwzh@gnu.org>
date Tue, 27 Sep 1994 03:05:28 +0000
parents 2190d1e7a69f
children 48820d57a24c
files src/emacs.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/emacs.c	Tue Sep 27 03:03:38 1994 +0000
+++ b/src/emacs.c	Tue Sep 27 03:05:28 1994 +0000
@@ -879,7 +879,7 @@
 
   shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
 
-  exit ((XTYPE (arg) == Lisp_Int) ? XINT (arg)
+  exit (INTEGERP (arg) ? XINT (arg)
 #ifdef VMS
 	: 1
 #else