diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/tar-mode.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index df600d17960..e8d74851d04 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-02-09 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * tar-mode.el (tar-extract): Fix for the case that a file doesn't | ||
| 4 | have end-of-line. | ||
| 5 | |||
| 1 | 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org> | 6 | 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org> |
| 2 | 7 | ||
| 3 | * Makefile.in: Added extra dependencies in the recompile target | 8 | * Makefile.in: Added extra dependencies in the recompile target |
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index dccbb6f82df..0f0c22cabe1 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el | |||
| @@ -743,6 +743,7 @@ appear on disk when you save the tar-file's buffer." | |||
| 743 | (min (+ (point-min) 16384) (point-max)) t))) | 743 | (min (+ (point-min) 16384) (point-max)) t))) |
| 744 | (if coding | 744 | (if coding |
| 745 | (or (numberp (coding-system-eol-type coding)) | 745 | (or (numberp (coding-system-eol-type coding)) |
| 746 | (vectorp (coding-system-eol-type detected)) | ||
| 746 | (setq coding (coding-system-change-eol-conversion | 747 | (setq coding (coding-system-change-eol-conversion |
| 747 | coding | 748 | coding |
| 748 | (coding-system-eol-type detected)))) | 749 | (coding-system-eol-type detected)))) |