diff options
| author | Karl Heuer | 1994-09-27 03:05:28 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-09-27 03:05:28 +0000 |
| commit | 55ccc0b37b03eaf0a7ab99716e1b6f019da47724 (patch) | |
| tree | 64dffdb23f0eb2f919486404f8aade6071fc9d97 /src | |
| parent | 93c30b5f849cf4181ed162c312cb126dc80f6012 (diff) | |
| download | emacs-55ccc0b37b03eaf0a7ab99716e1b6f019da47724.tar.gz emacs-55ccc0b37b03eaf0a7ab99716e1b6f019da47724.zip | |
(Fkill_emacs): Use type test macros.
Diffstat (limited to 'src')
| -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.") | |||
| 879 | 879 | ||
| 880 | shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil); | 880 | shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil); |
| 881 | 881 | ||
| 882 | exit ((XTYPE (arg) == Lisp_Int) ? XINT (arg) | 882 | exit (INTEGERP (arg) ? XINT (arg) |
| 883 | #ifdef VMS | 883 | #ifdef VMS |
| 884 | : 1 | 884 | : 1 |
| 885 | #else | 885 | #else |