aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2000-05-18 12:19:41 +0000
committerAndreas Schwab2000-05-18 12:19:41 +0000
commit1473639373d7bbdb39acb60af43d4abd8932a5f1 (patch)
treee3a012181d47f368651a2b92032fb21d53bf4345
parent813086ea086548d2fbcd92b2a6af13cb70aea860 (diff)
downloademacs-1473639373d7bbdb39acb60af43d4abd8932a5f1.tar.gz
emacs-1473639373d7bbdb39acb60af43d4abd8932a5f1.zip
(dired-between-files): Also skip lines beginning with `used'.
-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