From: Karl Heuer Date: Tue, 27 Sep 1994 03:05:28 +0000 (+0000) Subject: (Fkill_emacs): Use type test macros. X-Git-Tag: emacs-19.34~6722 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=55ccc0b37b03eaf0a7ab99716e1b6f019da47724;p=emacs.git (Fkill_emacs): Use type test macros. --- diff --git a/src/emacs.c b/src/emacs.c index 8af46a64f5d..f00860ffe07 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -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