aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/shell.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4a2d3ceba17..f9280d5f0c6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-11-05 Christian Millour <cm@abtela.com> (tiny change)
2
3 * shell.el (shell-process-popd): Made aware of comint-file-name-prefix.
4
12010-11-05 Jan Djärv <jan.h.d@swipnet.se> 52010-11-05 Jan Djärv <jan.h.d@swipnet.se>
2 6
3 * mouse.el (mouse-yank-primary): Update comment (Bug#6802). 7 * mouse.el (mouse-yank-primary): Update comment (Bug#6802).
diff --git a/lisp/shell.el b/lisp/shell.el
index 6cb9a511101..b7f62efdb85 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -700,7 +700,7 @@ Environment variables are expanded, see function `substitute-in-file-name'."
700(defun shell-process-popd (arg) 700(defun shell-process-popd (arg)
701 (let ((num (or (shell-extract-num arg) 0))) 701 (let ((num (or (shell-extract-num arg) 0)))
702 (cond ((and num (= num 0) shell-dirstack) 702 (cond ((and num (= num 0) shell-dirstack)
703 (shell-cd (car shell-dirstack)) 703 (shell-cd (shell-prefixed-directory-name (car shell-dirstack)))
704 (setq shell-dirstack (cdr shell-dirstack)) 704 (setq shell-dirstack (cdr shell-dirstack))
705 (shell-dirstack-message)) 705 (shell-dirstack-message))
706 ((and num (> num 0) (<= num (length shell-dirstack))) 706 ((and num (> num 0) (<= num (length shell-dirstack)))