emacs: fix internal shell missing PATH entries
Alan Pearce alan@alanpearce.eu
Tue, 14 Mar 2023 19:43:07 +0100
1 files changed, 7 insertions(+), 6 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -31,12 +31,13 @@ (setq exec-path (delete-dups (append (parse-colon-path - (elt (split-string-and-unquote - (with-output-to-string - (with-current-buffer standard-output - (call-process "/usr/libexec/path_helper" nil t nil "-s"))) - "[=;]") - 1)) + (setenv "PATH" + (elt (split-string-and-unquote + (with-output-to-string + (with-current-buffer standard-output + (call-process "/usr/libexec/path_helper" nil t nil "-s"))) + "[=;]") + 1))) exec-path)) ap/path-configured t))