Function: tar-clear-modification-flags

tar-clear-modification-flags is an interactive and byte-compiled function defined in tar-mode.el.gz.

Signature

(tar-clear-modification-flags)

Documentation

Remove the stars at the beginning of each line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/tar-mode.el.gz
(defun tar-clear-modification-flags ()
  "Remove the stars at the beginning of each line."
  (interactive)
  (save-excursion
    (goto-char (point-min))
    (while (not (eobp))
      (if (not (eq (following-char) ?\s))
	  (progn (delete-char 1) (insert " ")))
      (forward-line 1))))