aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/dired.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index f99dfd7fad1..c7cd894c1e1 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -2178,7 +2178,7 @@ Command symbols are `byte-compile', `chgrp', `chmod', `chown', `compress',
2178 ;; Point must be at beginning of line 2178 ;; Point must be at beginning of line
2179 ;; Should be equivalent to (save-excursion (not (dired-move-to-filename))) 2179 ;; Should be equivalent to (save-excursion (not (dired-move-to-filename)))
2180 ;; but is about 1.5..2.0 times as fast. (Actually that's not worth it) 2180 ;; but is about 1.5..2.0 times as fast. (Actually that's not worth it)
2181 (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard") 2181 (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard\\|^. used")
2182 (and (looking-at dired-subdir-regexp) 2182 (and (looking-at dired-subdir-regexp)
2183 (save-excursion (not (dired-move-to-filename)))))) 2183 (save-excursion (not (dired-move-to-filename))))))
2184 2184