diff options
| author | Juanma Barranquero | 2006-11-27 14:07:26 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-11-27 14:07:26 +0000 |
| commit | e5d56b61a05b4fb8ac844422efe9ebdd7ef70198 (patch) | |
| tree | 13c6af47532630be31fa53b20175b9847b9164fd | |
| parent | b754307b9153d7429ae6380034d132d8da7ff024 (diff) | |
| download | emacs-e5d56b61a05b4fb8ac844422efe9ebdd7ef70198.tar.gz emacs-e5d56b61a05b4fb8ac844422efe9ebdd7ef70198.zip | |
(tar-header-block-summarize, tar-clear-modification-flags): "?\ " -> "?\s".
| -rw-r--r-- | lisp/tar-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index a02fd1b2ba9..b1f0176b0f3 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el | |||
| @@ -363,7 +363,7 @@ MODE should be an integer which is a file mode value." | |||
| 363 | ((eq type 29) ?M) ; multivolume continuation | 363 | ((eq type 29) ?M) ; multivolume continuation |
| 364 | ((eq type 35) ?S) ; sparse | 364 | ((eq type 35) ?S) ; sparse |
| 365 | ((eq type 38) ?V) ; volume header | 365 | ((eq type 38) ?V) ; volume header |
| 366 | (t ?\ ) | 366 | (t ?\s) |
| 367 | ) | 367 | ) |
| 368 | (tar-grind-file-mode mode) | 368 | (tar-grind-file-mode mode) |
| 369 | (if (= 0 (length uname)) uid uname) | 369 | (if (= 0 (length uname)) uid uname) |
| @@ -958,7 +958,7 @@ for this to be permanent." | |||
| 958 | (save-excursion | 958 | (save-excursion |
| 959 | (goto-char (point-min)) | 959 | (goto-char (point-min)) |
| 960 | (while (< (position-bytes (point)) tar-header-offset) | 960 | (while (< (position-bytes (point)) tar-header-offset) |
| 961 | (if (not (eq (following-char) ?\ )) | 961 | (if (not (eq (following-char) ?\s)) |
| 962 | (progn (delete-char 1) (insert " "))) | 962 | (progn (delete-char 1) (insert " "))) |
| 963 | (forward-line 1)))) | 963 | (forward-line 1)))) |
| 964 | 964 | ||