Function: dired--trivial-next-dirline
dired--trivial-next-dirline is a byte-compiled function defined in
dired.el.gz.
Signature
(dired--trivial-next-dirline ARG &optional OPOINT)
Documentation
Goto ARGth next directory file line.
Source Code
;; Defined in /usr/src/emacs/lisp/dired.el.gz
(defun dired--trivial-next-dirline (arg &optional opoint)
"Goto ARGth next directory file line."
(or opoint (setq opoint (point)))
(if (if (> arg 0)
(re-search-forward dired-re-dir nil t arg)
(beginning-of-line)
(re-search-backward dired-re-dir nil t (- arg)))
(dired-move-to-filename) ; user may type `i' or `f'
(goto-char opoint)
(unless dired-movement-style
(error "No more subdirectories"))))