changeset 42427:f1a88fb2fb4e

(insert-directory): Modify the "total" line wording, in accordance with files.el's insert-directory.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 30 Dec 2001 17:04:26 +0000
parents 5e72bcdc23b8
children 84a1eb240549
files lisp/ls-lisp.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)))))))))