diff options
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 |