Mercurial > emacs
changeset 74243:b5548562a340
(tar-header-block-summarize, tar-clear-modification-flags): "?\ " -> "?\s".
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 27 Nov 2006 14:07:26 +0000 |
parents | f4d1181a38c2 |
children | d4c2b4add4ca |
files | lisp/tar-mode.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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))))