diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-09-27 03:05:28 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-09-27 03:05:28 +0000 |
commit | 55ccc0b37b03eaf0a7ab99716e1b6f019da47724 (patch) | |
tree | 64dffdb23f0eb2f919486404f8aade6071fc9d97 /src/emacs.c | |
parent | 93c30b5f849cf4181ed162c312cb126dc80f6012 (diff) | |
download | emacs-55ccc0b37b03eaf0a7ab99716e1b6f019da47724.tar.gz |
(Fkill_emacs): Use type test macros.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 2 |
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 |