diff options
author | Dave Love <fx@gnu.org> | 2000-06-09 14:19:34 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-06-09 14:19:34 +0000 |
commit | 5ee42746ce5715f9be7625173ce0adeca5db6dc1 (patch) | |
tree | bcd0cf6b960ed9cba450e9698603dee6bb383c9d /lisp/tar-mode.el | |
parent | 7629905050383dfd36684442431c09dcf85907f2 (diff) | |
download | emacs-5ee42746ce5715f9be7625173ce0adeca5db6dc1.tar.gz |
(tar-copy): Supply MUSTBENEW arg to write-region.
Diffstat (limited to 'lisp/tar-mode.el')
-rw-r--r-- | lisp/tar-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." (unwind-protect (let ((coding-system-for-write 'no-conversion)) (set-buffer-multibyte nil) - (write-region start end to-file)) + (write-region start end to-file nil nil nil t)) (set-buffer-multibyte multibyte))) (message "Copied tar entry %s to %s" name to-file))) |