Avoid kill-emacs-hook errors hanging batch mode
* src/emacs.c (Fkill_emacs): Prevent errors from kill-emacs-hook hanging Emacs in batch mode. (Bug#29955)
This commit is contained in:
parent
4c998b4e4f
commit
109da684c5
1 changed files with 4 additions and 1 deletions
|
@ -2024,7 +2024,10 @@ all of which are called before Emacs is actually killed. */
|
|||
/* Fsignal calls emacs_abort () if it sees that waiting_for_input is
|
||||
set. */
|
||||
waiting_for_input = 0;
|
||||
run_hook (Qkill_emacs_hook);
|
||||
if (noninteractive)
|
||||
safe_run_hooks (Qkill_emacs_hook);
|
||||
else
|
||||
run_hook (Qkill_emacs_hook);
|
||||
|
||||
#ifdef HAVE_X_WINDOWS
|
||||
/* Transfer any clipboards we own to the clipboard manager. */
|
||||
|
|
Loading…
Add table
Reference in a new issue