emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#13770: closed (24.3.50; Add support for .txz suffi


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#13770: closed (24.3.50; Add support for .txz suffix, XZ-compressed tar archives)
Date: Wed, 20 Feb 2013 14:33:03 +0000

Your message dated Wed, 20 Feb 2013 09:30:51 -0500
with message-id <address@hidden>
and subject line Re: bug#13770: 24.3.50; Add support for .txz suffix, 
XZ-compressed tar archives
has caused the debbugs.gnu.org bug report #13770,
regarding 24.3.50; Add support for .txz suffix, XZ-compressed tar archives
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
13770: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13770
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: 24.3.50; Add support for .txz suffix, XZ-compressed tar archives Date: Wed, 20 Feb 2013 09:55:06 +0100
The .txz suffix has recently become somewhat popular. For example,
Slackware GNU/Linux and FreeBSD are using it.

Attached patch adds support for .txz to jka-compr. (In other places,
like dired-x, .txz is already recognised). It would be nice if this
could be added to the trunk.

2013-02-20  Ulrich Müller  <address@hidden>

        * jka-cmpr-hook.el (jka-compr-compression-info-list)
        (jka-compr-mode-alist-additions): Handle .txz suffix for
        XZ-compressed tar archives.

--- emacs/lisp/jka-cmpr-hook.el
+++ emacs/lisp/jka-cmpr-hook.el
@@ -234,6 +234,10 @@
      "XZ compressing"     "xz"           ("-c" "-q")
      "XZ uncompressing"   "xz"           ("-c" "-q" "-d")
      t t "\3757zXZ\0"]
+    ["\\.txz\\'"
+     "XZ compressing"     "xz"           ("-c" "-q")
+     "XZ uncompressing"   "xz"           ("-c" "-q" "-d")
+     t nil "\3757zXZ\0"]
     ;; dzip is gzip with random access.  Its compression program can't
     ;; read/write stdin/out, so .dz files can only be viewed without
     ;; saving, having their contents decompressed with gzip.
@@ -302,7 +306,9 @@
   :group 'jka-compr)
 
 (defcustom jka-compr-mode-alist-additions
-  (list (cons (purecopy "\\.tgz\\'") 'tar-mode) (cons (purecopy "\\.tbz2?\\'") 
'tar-mode))
+  (list (cons (purecopy "\\.tgz\\'") 'tar-mode)
+       (cons (purecopy "\\.tbz2?\\'") 'tar-mode)
+       (cons (purecopy "\\.txz\\'") 'tar-mode))
   "List of pairs added to `auto-mode-alist' when installing jka-compr.
 Uninstalling jka-compr removes all pairs from `auto-mode-alist' that
 installing added.

--- End Message ---
--- Begin Message --- Subject: Re: bug#13770: 24.3.50; Add support for .txz suffix, XZ-compressed tar archives Date: Wed, 20 Feb 2013 09:30:51 -0500 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)
Version: 24.4

> Attached patch adds support for .txz to jka-compr. (In other places,
> like dired-x, .txz is already recognised). It would be nice if this
> could be added to the trunk.

Thank you, installed,


        Stefan


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]