]> git.eshelyaron.com Git - emacs.git/commitdiff
Always expand "total" in dired
authorChristopher Schmidt <christopher@ch.ristopher.com>
Sat, 23 Nov 2019 14:45:56 +0000 (15:45 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 23 Nov 2019 14:45:56 +0000 (15:45 +0100)
* lisp/files.el (insert-directory): Always replace "total" with
"total used in directory", even when we don't have free disk space
(bug#13191).  This makes the display more consistent.

lisp/files.el

index 2c45a8b1078445bd48c0865bc9a8141cbb56f077..a384e7136e89c557c3a5f7e37bf3c6ca2c4ba970 100644 (file)
@@ -7153,10 +7153,11 @@ normally equivalent short `-D' option is just passed on to
                (goto-char beg)
                ;; First find the line to put it on.
                (when (re-search-forward "^ *\\(total\\)" nil t)
+                 ;; Replace "total" with "total used in directory" to
+                 ;; avoid confusion.
+                 (replace-match "total used in directory" nil nil nil 1)
                  (let ((available (get-free-disk-space ".")))
                    (when available
-                     ;; Replace "total" with "used", to avoid confusion.
-                     (replace-match "total used in directory" nil nil nil 1)
                      (end-of-line)
                      (insert " available " available))))))))))