diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-20 04:13:45 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-20 04:13:45 +0000 |
commit | 5d9719e6eeaf5ea4d16c19f947148b0e78f81531 (patch) | |
tree | 0b04f033b2d81518264ea949b684b5d01e4e8ffe /lisp | |
parent | 116068730627f61218b21dc46597d14331c9e7a2 (diff) | |
download | emacs-5d9719e6eeaf5ea4d16c19f947148b0e78f81531.tar.gz |
(shell-mode): Do set list-files-directory locally.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/shell.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index a22b00289d6..0fa5462ab8a 100644 --- a/lisp/shell.el +++ b/lisp/shell.el @@ -390,8 +390,10 @@ buffer." (setq shell-dirtrackp t) (add-hook 'comint-input-filter-functions 'shell-directory-tracker nil t) (setq comint-input-autoexpand shell-input-autoexpand) - ;; We used to set list-buffers-directory here, but that was wrong. - ;; A shell buffer is not a way of editing a directory. + ;; This is not really correct, since the shell buffer does not really + ;; edit this directory. But it is useful in the buffer list and menus. + (make-local-variable 'list-buffers-directory) + (setq list-buffers-directory (expand-file-name default-directory)) ;; shell-dependent assignments. (let ((shell (file-name-nondirectory (car (process-command (get-buffer-process (current-buffer))))))) |