From 465251144002c5c9a4be1bff9052a714bd6c4afd Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 8 Dec 2020 21:40:10 -0500 Subject: [PATCH] Fix #4384: save server auth files to EMACSDIR It's where the daemon looks for them. It's too much hassle to move it elsewhere. --- core/core-editor.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core-editor.el b/core/core-editor.el index f17cd4936..d2c4714c5 100644 --- a/core/core-editor.el +++ b/core/core-editor.el @@ -331,6 +331,7 @@ files, so we replace calls to `pp' with the much faster `prin1'." (when-let (name (getenv "EMACS_SERVER_NAME")) (setq server-name name)) :config + (setq server-auth-dir (concat doom-emacs-dir "server/")) (unless (server-running-p) (server-start)))