aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/eshell/em-ls.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/em-ls.el b/lisp/eshell/em-ls.el
index 1d018026e67..3b5252c18a1 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."
480 "")) 480 ""))
481 (let* ((str (eshell-ls-printable-size (nth 7 attrs))) 481 (let* ((str (eshell-ls-printable-size (nth 7 attrs)))
482 (len (length str))) 482 (len (length str)))
483 (if (< len size-width) 483 (if (< len (or size-width 4))
484 (concat (make-string (- size-width len) ? ) str) 484 (concat (make-string (- (or size-width 4) len) ? ) str)
485 str)) 485 str))
486 " " (format-time-string 486 " " (format-time-string
487 (concat 487 (concat