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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/eshell/em-ls.el [lexbind]
Date: Thu, 20 Nov 2003 19:36:36 -0500

Index: emacs/lisp/eshell/em-ls.el
diff -c emacs/lisp/eshell/em-ls.el:1.12.4.2 emacs/lisp/eshell/em-ls.el:1.12.4.3
*** emacs/lisp/eshell/em-ls.el:1.12.4.2 Tue Oct 14 19:51:31 2003
--- emacs/lisp/eshell/em-ls.el  Thu Nov 20 19:36:07 2003
***************
*** 480,487 ****
                     ""))
                (let* ((str (eshell-ls-printable-size (nth 7 attrs)))
                       (len (length str)))
!                 (if (< len 8)
!                     (concat (make-string (- 8 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]