diff options
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/eshell/esh-ext.el | 3 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a04952def89..7e9da4fa8ff 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,11 @@ | |||
| 1 | 2012-08-05 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * eshell/esh-ext.el (eshell/addpath): | ||
| 4 | Also update eshell-path-env. (Bug#12013) | ||
| 5 | |||
| 1 | 2012-08-05 Chong Yidong <cyd@gnu.org> | 6 | 2012-08-05 Chong Yidong <cyd@gnu.org> |
| 2 | 7 | ||
| 3 | * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc | 8 | * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes. |
| 4 | fixes. | ||
| 5 | 9 | ||
| 6 | * fringe.el (fringe-styles): Add docstring. | 10 | * fringe.el (fringe-styles): Add docstring. |
| 7 | (fringe--check-mode): New function. | 11 | (fringe--check-mode): New function. |
diff --git a/lisp/eshell/esh-ext.el b/lisp/eshell/esh-ext.el index 603da6f2e30..17020245575 100644 --- a/lisp/eshell/esh-ext.el +++ b/lisp/eshell/esh-ext.el | |||
| @@ -235,7 +235,8 @@ Adds the given PATH to $PATH.") | |||
| 235 | (getenv "PATH")) | 235 | (getenv "PATH")) |
| 236 | (concat (getenv "PATH") path-separator | 236 | (concat (getenv "PATH") path-separator |
| 237 | (car args)))) | 237 | (car args)))) |
| 238 | (setq args (cdr args)))) | 238 | (setq args (cdr args))) |
| 239 | (setq eshell-path-env (getenv "PATH"))) | ||
| 239 | (let ((paths (parse-colon-path (getenv "PATH")))) | 240 | (let ((paths (parse-colon-path (getenv "PATH")))) |
| 240 | (while paths | 241 | (while paths |
| 241 | (eshell-printn (car paths)) | 242 | (eshell-printn (car paths)) |