diff options
author | John Wiegley <johnw@newartisans.com> | 2003-11-16 09:23:49 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2003-11-16 09:23:49 +0000 |
commit | 5a2e4c34bdef6ca75bcbc3e622e0feaf2147dbde (patch) | |
tree | 08c8947babaeadd9b1906430d7e3a04c77f9d59a /lisp/eshell | |
parent | 8ceaf1263329eef1c526dfb8e9ba5bd395adde83 (diff) | |
download | emacs-5a2e4c34bdef6ca75bcbc3e622e0feaf2147dbde.tar.gz |
(eshell-ls-file): Instead of making the size field in a long-listing
always 8 characters, use `size-width', which has already been
computed.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/em-ls.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/em-ls.el b/lisp/eshell/em-ls.el index aced2223327..1d018026e67 100644 --- a/lisp/eshell/em-ls.el +++ b/lisp/eshell/em-ls.el @@ -480,8 +480,8 @@ whose cdr is the list of file attributes." "")) (let* ((str (eshell-ls-printable-size (nth 7 attrs))) (len (length str))) - (if (< len 8) - (concat (make-string (- 8 len) ? ) str) + (if (< len size-width) + (concat (make-string (- size-width len) ? ) str) str)) " " (format-time-string (concat |