Function: dired-after-subdir-garbage
dired-after-subdir-garbage is a byte-compiled function defined in
dired-aux.el.gz.
Signature
(dired-after-subdir-garbage DIR)
Source Code
;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
(defun dired-after-subdir-garbage (dir)
;; Return pos of first file line of DIR, skipping header and total
;; or wildcard lines.
;; Important: never moves into the next subdir.
;; DIR is assumed to be unhidden.
(save-excursion
(or (dired-goto-subdir dir) (error "This cannot happen"))
(forward-line 1)
(while (and (not (eolp)) ; don't cross subdir boundary
(not (dired-move-to-filename)))
(forward-line 1))
(point)))