1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

(tar-extract): Fix for the case that a file doesn't have end-of-line.

This commit is contained in:
Kenichi Handa 2004-02-09 05:48:42 +00:00
parent fc4d69e139
commit f73145c173
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-02-09 Kenichi Handa <handa@m17n.org>
* tar-mode.el (tar-extract): Fix for the case that a file doesn't
have end-of-line.
2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
* Makefile.in: Added extra dependencies in the recompile target

View File

@ -743,6 +743,7 @@ appear on disk when you save the tar-file's buffer."
(min (+ (point-min) 16384) (point-max)) t)))
(if coding
(or (numberp (coding-system-eol-type coding))
(vectorp (coding-system-eol-type detected))
(setq coding (coding-system-change-eol-conversion
coding
(coding-system-eol-type detected))))