diff options
| author | Eli Zaretskii <eliz@gnu.org> | 2001-12-30 17:08:39 +0000 |
|---|---|---|
| committer | Eli Zaretskii <eliz@gnu.org> | 2001-12-30 17:08:39 +0000 |
| commit | 7ad0c1c3217f7e2b47ebd07a2bec02a9e04f7685 (patch) | |
| tree | 9f627c3336d5d26fa4e13e97e50393cc7c3c02bd /lisp/ls-lisp.el | |
| parent | 34ef66ac9ed0d2e9eb7e32cf73d8236f0b261b08 (diff) | |
| download | emacs-7ad0c1c3217f7e2b47ebd07a2bec02a9e04f7685.tar.gz | |
(insert-directory): Modify the "total" line wording, in accordance with
files.el's insert-directory.
Diffstat (limited to 'lisp/ls-lisp.el')
| -rw-r--r-- | lisp/ls-lisp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index 53057dab07f..28538a62721 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el @@ -208,8 +208,8 @@ that work are: A a c i r S s t u U X g G B C R and F partly." (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") + ;; Replace "total" with "total used", to avoid confusion. + (replace-match "total used in directory") (end-of-line) (insert " available " available))))))))) |
