From b4d004a91a505bb0beb0d6d071e9a39938148a9d Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 10 Jul 2019 15:01:01 +0200 Subject: [PATCH] Don't read envvar literally at startup #1549 --- core/core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.el b/core/core.el index b726abb45..27f93f45e 100644 --- a/core/core.el +++ b/core/core.el @@ -432,7 +432,7 @@ in interactive sessions, nil otherwise (but logs a warning)." (if (not (file-readable-p file)) (doom-log "Couldn't read %S envvar file" file) (with-temp-buffer - (insert-file-contents-literally file) + (insert-file-contents file) (search-forward "\n\n" nil t) (while (re-search-forward "\n\\([^= \n]+\\)=" nil t) (save-excursion