mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-09 09:16:02 -08:00
(tar-get-descriptor): No error for zero-length file.
This commit is contained in:
parent
1d16d0504b
commit
f09bbd9388
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2007-07-15 Aaron Hawley <aaronh@garden.org>
|
||||
|
||||
* tar-mode.el (tar-get-descriptor): No error for zero-length file.
|
||||
|
||||
2007-07-15 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* mouse.el (mouse-drag-track): Reset transient-mark-mode to nil
|
||||
|
|
|
|||
|
|
@ -667,7 +667,7 @@ appear on disk when you save the tar-file's buffer."
|
|||
((eq link-p 38) "a volume header")
|
||||
((eq link-p 55) "an extended pax header")
|
||||
(t "a link"))))
|
||||
(if (zerop size) (error "This is a zero-length file"))
|
||||
(if (zerop size) (message "This is a zero-length file"))
|
||||
descriptor))
|
||||
|
||||
(defun tar-mouse-extract (event)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue