diff options
| author | Dave Love | 2000-06-09 14:19:34 +0000 |
|---|---|---|
| committer | Dave Love | 2000-06-09 14:19:34 +0000 |
| commit | 5ee42746ce5715f9be7625173ce0adeca5db6dc1 (patch) | |
| tree | bcd0cf6b960ed9cba450e9698603dee6bb383c9d | |
| parent | 7629905050383dfd36684442431c09dcf85907f2 (diff) | |
| download | emacs-5ee42746ce5715f9be7625173ce0adeca5db6dc1.tar.gz emacs-5ee42746ce5715f9be7625173ce0adeca5db6dc1.zip | |
(tar-copy): Supply MUSTBENEW arg to write-region.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/tar-mode.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index abf1255da5a..745384d85c5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2000-06-09 Dave Love <fx@gnu.org> | 1 | 2000-06-09 Dave Love <fx@gnu.org> |
| 2 | 2 | ||
| 3 | * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region. | ||
| 4 | |||
| 3 | * executable.el: Byte compile dynamic. | 5 | * executable.el: Byte compile dynamic. |
| 4 | (executable-insert): Change custom type. | 6 | (executable-insert): Change custom type. |
| 5 | (executable-find): Add autoload cookie. | 7 | (executable-find): Add autoload cookie. |
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index bbf4774fd72..8fade4c6768 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el | |||
| @@ -834,7 +834,7 @@ the current tar-entry." | |||
| 834 | (unwind-protect | 834 | (unwind-protect |
| 835 | (let ((coding-system-for-write 'no-conversion)) | 835 | (let ((coding-system-for-write 'no-conversion)) |
| 836 | (set-buffer-multibyte nil) | 836 | (set-buffer-multibyte nil) |
| 837 | (write-region start end to-file)) | 837 | (write-region start end to-file nil nil nil t)) |
| 838 | (set-buffer-multibyte multibyte))) | 838 | (set-buffer-multibyte multibyte))) |
| 839 | (message "Copied tar entry %s to %s" name to-file))) | 839 | (message "Copied tar entry %s to %s" name to-file))) |
| 840 | 840 | ||