aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/eshell/esh-util.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a8924318676..8dc238f937b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-01-17 Jürgen Hötzel <juergen@archlinux.org>
2
3 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
4 order to support several eshell buffers in parallel.
5
12013-01-17 Michael Albinus <michael.albinus@gmx.de> 62013-01-17 Michael Albinus <michael.albinus@gmx.de>
2 7
3 * autorevert.el (auto-revert-use-notify): In the :set function, do 8 * autorevert.el (auto-revert-use-notify): In the :set function, do
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el
index 2f49a21e76c..f9b86219e9b 100644
--- a/lisp/eshell/esh-util.el
+++ b/lisp/eshell/esh-util.el
@@ -229,6 +229,7 @@ If N or M is nil, it means the end of the list."
229 "Content of $PATH. 229 "Content of $PATH.
230It might be different from \(getenv \"PATH\"\), when 230It might be different from \(getenv \"PATH\"\), when
231`default-directory' points to a remote host.") 231`default-directory' points to a remote host.")
232(make-variable-buffer-local 'eshell-path-env)
232 233
233(defun eshell-parse-colon-path (path-env) 234(defun eshell-parse-colon-path (path-env)
234 "Split string with `parse-colon-path'. 235 "Split string with `parse-colon-path'.