[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/ls-lisp.el
From: |
Eli Zaretskii |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/ls-lisp.el |
Date: |
Sun, 30 Dec 2001 12:04:27 -0500 |
Index: emacs/lisp/ls-lisp.el
diff -c emacs/lisp/ls-lisp.el:1.41 emacs/lisp/ls-lisp.el:1.42
*** emacs/lisp/ls-lisp.el:1.41 Fri Dec 21 10:21:27 2001
--- emacs/lisp/ls-lisp.el Sun Dec 30 12:04:26 2001
***************
*** 208,215 ****
(when (re-search-forward "^total" nil t)
(let ((available (get-free-disk-space ".")))
(when available
! ;; Replace "total" with "used", to avoid confusion.
! (replace-match "used")
(end-of-line)
(insert " available " available)))))))))
--- 208,215 ----
(when (re-search-forward "^total" nil t)
(let ((available (get-free-disk-space ".")))
(when available
! ;; Replace "total" with "total used", to avoid confusion.
! (replace-match "total used in directory")
(end-of-line)
(insert " available " available)))))))))