From: Mark Wooding Date: Wed, 31 Mar 2010 09:11:34 +0000 (+0100) Subject: dot/emacs: Mark the `edit-server' process as expendable. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/955a327c5712eebdf99b9cf64733e90fed540088?ds=inline;hp=--cc dot/emacs: Mark the `edit-server' process as expendable. Don't want it holding up closedown. I should submit a bug about this. --- 955a327c5712eebdf99b9cf64733e90fed540088 diff --git a/dot/emacs b/dot/emacs index ed2d4d1..ea038b8 100644 --- a/dot/emacs +++ b/dot/emacs @@ -99,7 +99,10 @@ (trap (server-start)) (trap (progn (require 'edit-server) - (edit-server-start))))) + (edit-server-start) + (let ((edit (get-process "edit-server"))) + (and edit + (set-process-query-on-exit-flag edit nil))))))) ;; Control backup behaviour.