From 55ccc0b37b03eaf0a7ab99716e1b6f019da47724 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 27 Sep 1994 03:05:28 +0000 Subject: [PATCH] (Fkill_emacs): Use type test macros. --- src/emacs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5