summaryrefslogtreecommitdiff
path: root/lisp/ls-lisp.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/ls-lisp.el')
-rw-r--r--lisp/ls-lisp.el4
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)))))))))