diff --git a/elpa/exec-path-from-shell-20180324.204/exec-path-from-shell-autoloads.el b/elpa/exec-path-from-shell-20190106.307/exec-path-from-shell-autoloads.el similarity index 82% rename from elpa/exec-path-from-shell-20180324.204/exec-path-from-shell-autoloads.el rename to elpa/exec-path-from-shell-20190106.307/exec-path-from-shell-autoloads.el index 8f2d521..53e4b79 100644 --- a/elpa/exec-path-from-shell-20180324.204/exec-path-from-shell-autoloads.el +++ b/elpa/exec-path-from-shell-20190106.307/exec-path-from-shell-autoloads.el @@ -1,10 +1,13 @@ ;;; exec-path-from-shell-autoloads.el --- automatically extracted autoloads ;; ;;; Code: -(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path)))) + +(add-to-list 'load-path (directory-file-name + (or (file-name-directory #$) (car load-path)))) + ;;;### (autoloads nil "exec-path-from-shell" "exec-path-from-shell.el" -;;;;;; (23441 26552 330605 796000)) +;;;;;; (0 0 0 0)) ;;; Generated autoloads from exec-path-from-shell.el (autoload 'exec-path-from-shell-copy-envs "exec-path-from-shell" "\ @@ -34,11 +37,14 @@ values used in the user's shell. \(fn)" t nil) +(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "exec-path-from-shell" '("exec-path-from-shell-"))) + ;;;*** ;; Local Variables: ;; version-control: never ;; no-byte-compile: t ;; no-update-autoloads: t +;; coding: utf-8 ;; End: ;;; exec-path-from-shell-autoloads.el ends here diff --git a/elpa/exec-path-from-shell-20180324.204/exec-path-from-shell-pkg.el b/elpa/exec-path-from-shell-20190106.307/exec-path-from-shell-pkg.el similarity index 51% rename from elpa/exec-path-from-shell-20180324.204/exec-path-from-shell-pkg.el rename to elpa/exec-path-from-shell-20190106.307/exec-path-from-shell-pkg.el index 8cce380..4017a0c 100644 --- a/elpa/exec-path-from-shell-20180324.204/exec-path-from-shell-pkg.el +++ b/elpa/exec-path-from-shell-20190106.307/exec-path-from-shell-pkg.el @@ -1,2 +1,2 @@ ;;; -*- no-byte-compile: t -*- -(define-package "exec-path-from-shell" "20180324.204" "Get environment variables such as $PATH from the shell" 'nil :commit "d8aa7765a138a0cee1a18ac380019fb3b33d07e6" :keywords '("unix" "environment") :authors '(("Steve Purcell" . "steve@sanityinc.com")) :maintainer '("Steve Purcell" . "steve@sanityinc.com") :url "https://github.com/purcell/exec-path-from-shell") +(define-package "exec-path-from-shell" "20190106.307" "Get environment variables such as $PATH from the shell" 'nil :commit "76cd6e3fa8a7dac937af7e40507843dfae4f9184" :keywords '("unix" "environment") :authors '(("Steve Purcell" . "steve@sanityinc.com")) :maintainer '("Steve Purcell" . "steve@sanityinc.com") :url "https://github.com/purcell/exec-path-from-shell") diff --git a/elpa/exec-path-from-shell-20180324.204/exec-path-from-shell.el b/elpa/exec-path-from-shell-20190106.307/exec-path-from-shell.el similarity index 97% rename from elpa/exec-path-from-shell-20180324.204/exec-path-from-shell.el rename to elpa/exec-path-from-shell-20190106.307/exec-path-from-shell.el index 6877253..9deb4b5 100644 --- a/elpa/exec-path-from-shell-20180324.204/exec-path-from-shell.el +++ b/elpa/exec-path-from-shell-20190106.307/exec-path-from-shell.el @@ -5,7 +5,7 @@ ;; Author: Steve Purcell ;; Keywords: unix, environment ;; URL: https://github.com/purcell/exec-path-from-shell -;; Package-Version: 20180324.204 +;; Package-Version: 20190106.307 ;; Package-X-Original-Version: 0 ;; This file is not part of GNU Emacs. @@ -120,9 +120,12 @@ See documentation for `exec-path-from-shell-shell-name'." (error "SHELL environment variable is unset"))) (defcustom exec-path-from-shell-arguments - (if (string-match-p "t?csh$" (exec-path-from-shell--shell)) - (list "-d") - (list "-l" "-i")) + (let ((shell (exec-path-from-shell--shell))) + (if (string-match-p "t?csh$" shell) + (list "-d") + (if (string-match-p "fish" shell) + (list "-l") + (list "-l" "-i")))) "Additional arguments to pass to the shell. The default value denotes an interactive login shell."