# HG changeset patch # User Eli Zaretskii # Date 1009731866 0 # Node ID f1a88fb2fb4eb3d26d38b849d2bfca7039f9ab32 # Parent 5e72bcdc23b8a2edff51588d7409fba88c1ed071 (insert-directory): Modify the "total" line wording, in accordance with files.el's insert-directory. diff -r 5e72bcdc23b8 -r f1a88fb2fb4e lisp/ls-lisp.el --- a/lisp/ls-lisp.el Sun Dec 30 06:40:17 2001 +0000 +++ b/lisp/ls-lisp.el Sun Dec 30 17:04:26 2001 +0000 @@ -208,8 +208,8 @@ (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)))))))))