[ELPA] Package update

This commit is contained in:
Daniel - 2019-01-12 10:56:12 +01:00
parent a83b5b1d78
commit 85e3422dae
Signed by: dbo
GPG Key ID: 4F63DB96D45AA9C6
3 changed files with 16 additions and 7 deletions

View File

@ -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

View File

@ -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")

View File

@ -5,7 +5,7 @@
;; Author: Steve Purcell <steve@sanityinc.com>
;; 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))
(let ((shell (exec-path-from-shell--shell)))
(if (string-match-p "t?csh$" shell)
(list "-d")
(list "-l" "-i"))
(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."