# HG changeset patch # User Jim Blandy # Date 740521571 0 # Node ID 85652925d5b82a8492967f6d7baf6365d417918a # Parent 04f1cff889f4e8c9c5ed8ec12a03b73d8ba884bc * emacs.c (Fkill_emacs): Pass third argument to shut_down_emacs. * lisp.h (shut_down_emacs): Doc fix. diff -r 04f1cff889f4 -r 85652925d5b8 src/emacs.c --- a/src/emacs.c Sat Jun 19 20:18:05 1993 +0000 +++ b/src/emacs.c Sat Jun 19 20:26:11 1993 +0000 @@ -649,7 +649,7 @@ stop_vms_input (); #endif */ - shut_down_emacs (0, 0); + shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil); exit ((XTYPE (arg) == Lisp_Int) ? XINT (arg) #ifdef VMS diff -r 04f1cff889f4 -r 85652925d5b8 src/lisp.h --- a/src/lisp.h Sat Jun 19 20:18:05 1993 +0000 +++ b/src/lisp.h Sat Jun 19 20:26:11 1993 +0000 @@ -1257,7 +1257,7 @@ /* defined in emacs.c */ extern Lisp_Object decode_env_path (); extern Lisp_Object Vinvocation_name; -void shut_down_emacs ( /* int signal, int no_x */ ); +void shut_down_emacs ( /* int signal, int no_x, Lisp_Object stuff */ ); /* Nonzero means don't do interactive redisplay and don't change tty modes */ extern int noninteractive; /* Nonzero means don't do use window-system-specific display code */