summaryrefslogtreecommitdiff
path: root/src/emacs.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-09-27 03:05:28 +0000
committerKarl Heuer <kwzh@gnu.org>1994-09-27 03:05:28 +0000
commit55ccc0b37b03eaf0a7ab99716e1b6f019da47724 (patch)
tree64dffdb23f0eb2f919486404f8aade6071fc9d97 /src/emacs.c
parent93c30b5f849cf4181ed162c312cb126dc80f6012 (diff)
downloademacs-55ccc0b37b03eaf0a7ab99716e1b6f019da47724.tar.gz
(Fkill_emacs): Use type test macros.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c2
1 files changed, 1 insertions, 1 deletions
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