Function: tar-previous-line

tar-previous-line is an interactive and byte-compiled function defined in tar-mode.el.gz.

Signature

(tar-previous-line ARG)

Documentation

Move cursor vertically up 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-previous-line (arg)
  "Move cursor vertically up ARG lines and to the start of the filename."
  (interactive "p")
  (tar-next-line (- arg)))