diff --git a/lisp/desktop.el b/lisp/desktop.el index fb7c6c79a1a..ae8d026acc4 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -731,7 +731,7 @@ if different)." ;; ---------------------------------------------------------------------------- (unless noninteractive - (add-hook 'kill-emacs-hook #'desktop-kill)) + (add-hook 'kill-emacs-query-functions #'desktop-kill)) (defun desktop-kill () "If `desktop-save-mode' is non-nil, do what `desktop-save' says to do. @@ -759,7 +759,8 @@ is nil, ask the user where to save the desktop." (unless (yes-or-no-p "Error while saving the desktop. Ignore? ") (signal (car err) (cdr err)))))) ;; If we own it, we don't anymore. - (when (eq (emacs-pid) (desktop-owner)) (desktop-release-lock))) + (when (eq (emacs-pid) (desktop-owner)) (desktop-release-lock)) + t) ;; ---------------------------------------------------------------------------- (defun desktop-list* (&rest args)