changeset 44204:c9cbe448711d

(tar-header-block-summarize, tar-get-descriptor): Support "next has longname" link type.
author Richard M. Stallman <rms@gnu.org>
date Thu, 28 Mar 2002 18:15:47 +0000
parents 621fbfd0bf87
children 999568e4ea2c
files lisp/tar-mode.el
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/tar-mode.el	Thu Mar 28 18:15:32 2002 +0000
+++ b/lisp/tar-mode.el	Thu Mar 28 18:15:47 2002 +0000
@@ -356,6 +356,7 @@
 		  ((eq type 5) ?d)	; directory
 		  ((eq type 6) ?p)	; FIFO/pipe
 		  ((eq type 20) ?*)	; directory listing
+		  ((eq type 28) ?L)	; next has longname
 		  ((eq type 29) ?M)	; multivolume continuation
 		  ((eq type 35) ?S)	; sparse
 		  ((eq type 38) ?V)	; volume header
@@ -660,6 +661,7 @@
 	(error "This is a %s, not a real file"
 	       (cond ((eq link-p 5) "directory")
 		     ((eq link-p 20) "tar directory header")
+		     ((eq link-p 28) "next has longname")
 		     ((eq link-p 29) "multivolume-continuation")
 		     ((eq link-p 35) "sparse entry")
 		     ((eq link-p 38) "volume header")