From f92f4aab9721dd7aa0a87f82f3b8155d429dc581 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 21 Oct 2020 11:18:47 -0400 Subject: [PATCH] Fix file-handlers for daemon sessions --- core/core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.el b/core/core.el index 721af19b0..4a8f88792 100644 --- a/core/core.el +++ b/core/core.el @@ -39,7 +39,7 @@ ;; path/io functions. You get a minor speed up by nooping this. However, this ;; may cause problems on builds of Emacs where its site lisp files aren't ;; byte-compiled and we're forced to load the *.el.gz files (e.g. on Alpine) -(unless noninteractive +(unless (or noninteractive (daemonp)) (defvar doom--initial-file-name-handler-alist file-name-handler-alist) (setq file-name-handler-alist nil)