From a94ddd4a58e262ac672ac1569174c5046d093221 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 12 Mar 2018 12:40:51 -0400 Subject: [PATCH] core-os: correct typo in :env setting #449 --- core/core-os.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-os.el b/core/core-os.el index 61af0b29d..2b21248c9 100644 --- a/core/core-os.el +++ b/core/core-os.el @@ -38,7 +38,7 @@ (when (require 'exec-path-from-shell nil t) (def-setting! :env (&rest vars) "Inject VARS from your shell environment into Emacs." - `(exec-path-from-shell-copy-env (list ,@vars))) + `(exec-path-from-shell-copy-envs (list ,@vars))) (setq exec-path-from-shell-check-startup-files nil exec-path-from-shell-arguments (delete "-i" exec-path-from-shell-arguments)) (defvaralias 'exec-path-from-shell-debug 'doom-debug-mode)