emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/eshell/em-ls.el


From: John Wiegley
Subject: [Emacs-diffs] Changes to emacs/lisp/eshell/em-ls.el
Date: Sun, 16 Nov 2003 19:24:07 -0500

Index: emacs/lisp/eshell/em-ls.el
diff -c emacs/lisp/eshell/em-ls.el:1.17 emacs/lisp/eshell/em-ls.el:1.18
*** emacs/lisp/eshell/em-ls.el:1.17     Sun Nov 16 04:23:49 2003
--- emacs/lisp/eshell/em-ls.el  Sun Nov 16 19:24:06 2003
***************
*** 480,487 ****
                     ""))
                (let* ((str (eshell-ls-printable-size (nth 7 attrs)))
                       (len (length str)))
!                 (if (< len size-width)
!                     (concat (make-string (- size-width len) ? ) str)
                    str))
                " " (format-time-string
                     (concat
--- 480,487 ----
                     ""))
                (let* ((str (eshell-ls-printable-size (nth 7 attrs)))
                       (len (length str)))
!                 (if (< len (or size-width 4))
!                     (concat (make-string (- (or size-width 4) len) ? ) str)
                    str))
                " " (format-time-string
                     (concat




reply via email to

[Prev in Thread] Current Thread [Next in Thread]