branch: elpa/exec-path-from-shell
commit 4d0af1274797ce61f5d8c209339d5b9cdc49aca6
Merge: 4c67a95a65 5c44eabbb0
Author: Steve Purcell <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #77 from jabranham/byte-compile
Declare a variable for the byte compiler
---
exec-path-from-shell.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/exec-path-from-shell.el b/exec-path-from-shell.el
index 655f9580b4..40cf8f6c39 100644
--- a/exec-path-from-shell.el
+++ b/exec-path-from-shell.el
@@ -72,6 +72,9 @@
;;; Code:
+;; Satisfy the byte compiler
+(defvar eshell-path-env)
+
(defgroup exec-path-from-shell nil
"Make Emacs use shell-defined values for $PATH etc."
:prefix "exec-path-from-shell-"