diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-11-12 12:43:32 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-11-12 12:43:32 +0000 |
commit | 1a4280fb4706f2b5d4f206585d88fcc924fb14a6 (patch) | |
tree | 440e6a1c3b8cd19cb2792000422239005afb11c4 /lisp/buff-menu.el | |
parent | d35fce81ae92d5c7465e376434fb81855624b39d (diff) | |
download | emacs-1a4280fb4706f2b5d4f206585d88fcc924fb14a6.tar.gz |
(list-buffers-noselect): Use abbreviate-file-name
to display file names.
Diffstat (limited to 'lisp/buff-menu.el')
-rw-r--r-- | lisp/buff-menu.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index 8861ccf6d33..18b46dc8ece 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el @@ -566,7 +566,7 @@ The R column contains a % for buffers that are read-only." (indent-to 40 1) (or file (setq file this-buffer-directory)) (if file - (princ file)) + (princ (abbreviate-file-name file))) (princ "\n")))) (setq bl (cdr bl)))) (Buffer-menu-mode) |