From eae45e664b2cb022a4f55279a0b87ee15b27d804 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 5 Oct 2019 13:00:06 -0400 Subject: [PATCH] doom-load-envvars-file: split-string->parse-colon-path --- core/core.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/core.el b/core/core.el index 8a1b80dae..896210325 100644 --- a/core/core.el +++ b/core/core.el @@ -437,8 +437,7 @@ in interactive sessions, nil otherwise (but logs a warning)." (setenv var value))))) (when vars (setq-default - exec-path (append (split-string (getenv "PATH") - (if IS-WINDOWS ";" ":")) + exec-path (append (parse-colon-path (getenv "PATH")) (list exec-directory)) shell-file-name (or (getenv "SHELL") shell-file-name))