From: Andreas Schwab Date: Thu, 18 May 2000 12:19:41 +0000 (+0000) Subject: (dired-between-files): Also skip lines beginning with `used'. X-Git-Tag: emacs-pretest-21.0.90~3917 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1473639373d7bbdb39acb60af43d4abd8932a5f1;p=emacs.git (dired-between-files): Also skip lines beginning with `used'. --- 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))))))