Function: tar-next-line
tar-next-line is an interactive and byte-compiled function defined in
tar-mode.el.gz.
Signature
(tar-next-line ARG)
Documentation
Move cursor vertically down ARG lines and to the start of the filename.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/tar-mode.el.gz
(defun tar-next-line (arg)
"Move cursor vertically down ARG lines and to the start of the filename."
(interactive "p")
(forward-line arg)
(goto-char (or (next-single-property-change (point) 'mouse-face) (point))))