From 1473639373d7bbdb39acb60af43d4abd8932a5f1 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Thu, 18 May 2000 12:19:41 +0000 Subject: [PATCH] (dired-between-files): Also skip lines beginning with `used'. --- lisp/dired.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', ;; Point must be at beginning of line ;; Should be equivalent to (save-excursion (not (dired-move-to-filename))) ;; but is about 1.5..2.0 times as fast. (Actually that's not worth it) - (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard") + (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard\\|^. used") (and (looking-at dired-subdir-regexp) (save-excursion (not (dired-move-to-filename)))))) -- 2.39.5