]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fkill_emacs): Use type test macros.
authorKarl Heuer <kwzh@gnu.org>
Tue, 27 Sep 1994 03:05:28 +0000 (03:05 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 27 Sep 1994 03:05:28 +0000 (03:05 +0000)
src/emacs.c

index 8af46a64f5d0d49a0cb4b93a01ee4ffbc160deda..f00860ffe07ed80177b0923f589006123f829cef 100644 (file)
@@ -879,7 +879,7 @@ all of which are called before Emacs is actually killed.")
 
   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