# HG changeset patch # User Juanma Barranquero # Date 1164636446 0 # Node ID b5548562a340563ca65be31687b93810f7f69c27 # Parent f4d1181a38c2057d6494d82d655d65ab98996d18 (tar-header-block-summarize, tar-clear-modification-flags): "?\ " -> "?\s". diff -r f4d1181a38c2 -r b5548562a340 lisp/tar-mode.el --- a/lisp/tar-mode.el Mon Nov 27 14:05:58 2006 +0000 +++ b/lisp/tar-mode.el Mon Nov 27 14:07:26 2006 +0000 @@ -363,7 +363,7 @@ ((eq type 29) ?M) ; multivolume continuation ((eq type 35) ?S) ; sparse ((eq type 38) ?V) ; volume header - (t ?\ ) + (t ?\s) ) (tar-grind-file-mode mode) (if (= 0 (length uname)) uid uname) @@ -958,7 +958,7 @@ (save-excursion (goto-char (point-min)) (while (< (position-bytes (point)) tar-header-offset) - (if (not (eq (following-char) ?\ )) + (if (not (eq (following-char) ?\s)) (progn (delete-char 1) (insert " "))) (forward-line 1))))