[ELPA] Update

This commit is contained in:
Daniel - 2018-03-03 14:01:41 +01:00
parent 4c7102eb2d
commit 4fa3a7a4d1
Signed by: dbo
GPG Key ID: 4F63DB96D45AA9C6
10 changed files with 10 additions and 10 deletions

View File

@ -1,2 +0,0 @@
;;; -*- no-byte-compile: t -*-
(define-package "exec-path-from-shell" "20170508.4" "Get environment variables such as $PATH from the shell" 'nil :commit "5e355fbc50913d1ffe48bf86df0bcecd8b369ffb" :url "https://github.com/purcell/exec-path-from-shell" :keywords '("environment"))

View File

@ -4,7 +4,7 @@
(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"
;;;;;; (22911 3932 648589 906000))
;;;;;; (23194 22920 277259 350000))
;;; Generated autoloads from exec-path-from-shell.el
(autoload 'exec-path-from-shell-copy-envs "exec-path-from-shell" "\

View File

@ -0,0 +1,2 @@
;;; -*- no-byte-compile: t -*-
(define-package "exec-path-from-shell" "20180224.1916" "Get environment variables such as $PATH from the shell" 'nil :commit "885b3de9bb6365771dd09f5267f6ff843d5109e8" :url "https://github.com/purcell/exec-path-from-shell" :keywords '("unix" "environment"))

View File

@ -3,9 +3,9 @@
;; Copyright (C) 2012-2014 Steve Purcell
;; Author: Steve Purcell <steve@sanityinc.com>
;; Keywords: environment
;; Keywords: unix, environment
;; URL: https://github.com/purcell/exec-path-from-shell
;; Package-Version: 20170508.4
;; Package-Version: 20180224.1916
;; Package-X-Original-Version: 0
;; This file is not part of GNU Emacs.
@ -132,7 +132,7 @@ The default value denotes an interactive login shell."
(apply 'message msg args)))
(defun exec-path-from-shell--standard-shell-p (shell)
"Return non-nil iff the shell supports the standard ${VAR-default} syntax."
"Return non-nil iff SHELL supports the standard ${VAR-default} syntax."
(not (string-match "\\(fish\\|t?csh\\)$" shell)))
(defun exec-path-from-shell-printf (str &optional args)
@ -262,7 +262,6 @@ values used in the user's shell."
;; Local Variables:
;; coding: utf-8
;; indent-tabs-mode: nil
;; mangle-whitespace: t
;; require-final-newline: t
;; checkdoc-minor-mode: t
;; End:

View File

@ -3,7 +3,7 @@
;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "hydra" "hydra.el" (23179 13926 352819 118000))
;;;### (autoloads nil "hydra" "hydra.el" (23194 22908 273187 855000))
;;; Generated autoloads from hydra.el
(autoload 'defhydra "hydra" "\
@ -65,7 +65,7 @@ result of `defhydra'.
;;;***
;;;### (autoloads nil nil ("hydra-examples.el" "hydra-ox.el" "hydra-pkg.el"
;;;;;; "lv.el") (23179 13926 364819 184000))
;;;;;; "lv.el") (23194 22908 285187 927000))
;;;***

View File

@ -1,4 +1,4 @@
(define-package "hydra" "20180201.846" "Make bindings that stick around."
(define-package "hydra" "20180226.1116" "Make bindings that stick around."
'((cl-lib "0.5"))
:url "https://github.com/abo-abo/hydra" :keywords
'("bindings"))

View File

@ -794,6 +794,7 @@ BODY-AFTER-EXIT is added to the end of the wrapper."
`(defun ,cmd-name ()
,doc
(interactive)
(require 'hydra)
(hydra-default-pre)
,@(when body-pre (list body-pre))
,@(if (hydra--head-property head :exit)