Function: tar-unflag-backwards

tar-unflag-backwards is an interactive and byte-compiled function defined in tar-mode.el.gz.

Signature

(tar-unflag-backwards P)

Documentation

In Tar mode, un-mark this sub-file if it is marked to be deleted.

With a prefix argument, un-mark that many files backward.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/tar-mode.el.gz
(defun tar-unflag-backwards (p)
  "In Tar mode, un-mark this sub-file if it is marked to be deleted.
With a prefix argument, un-mark that many files backward."
  (interactive "p")
  (tar-flag-deleted (- p) t))