emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog jka-cmpr-hook.el


From: Jim Meyering
Subject: [Emacs-diffs] emacs/lisp ChangeLog jka-cmpr-hook.el
Date: Mon, 22 Jun 2009 14:53:16 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Jim Meyering <meyering> 09/06/22 14:53:15

Modified files:
        lisp           : ChangeLog jka-cmpr-hook.el 

Log message:
        automatically handle .xz suffix (XZ-compressed files), too
        
        * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
        XZ is the successor to LZMA: <http://tukaani.org/xz/>

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15711&r2=1.15712
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/jka-cmpr-hook.el?cvsroot=emacs&r1=1.27&r2=1.28

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15711
retrieving revision 1.15712
diff -u -b -r1.15711 -r1.15712
--- ChangeLog   22 Jun 2009 10:57:06 -0000      1.15711
+++ ChangeLog   22 Jun 2009 14:53:11 -0000      1.15712
@@ -1,3 +1,9 @@
+2009-06-22  Jim Meyering  <address@hidden>
+
+       automatically handle .xz suffix (XZ-compressed files), too
+       * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
+       XZ is the successor to LZMA: <http://tukaani.org/xz/>
+
 2009-06-22  Dmitry Dzhus  <address@hidden>
                    Nick Roberts  <address@hidden>
        

Index: jka-cmpr-hook.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/jka-cmpr-hook.el,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -b -r1.27 -r1.28
--- jka-cmpr-hook.el    5 Jan 2009 03:19:27 -0000       1.27
+++ jka-cmpr-hook.el    22 Jun 2009 14:53:15 -0000      1.28
@@ -219,6 +219,10 @@
      "compressing"        "gzip"         ("-c" "-q")
      "uncompressing"      "gzip"         ("-c" "-q" "-d")
      t t "\037\213"]
+    ["\\.xz\\(~\\|\\.~[0-9]+~\\)?\\'"
+     "XZ compressing"     "xz"           ("-c" "-q")
+     "XZ uncompressing"   "xz"           ("-c" "-q" "-d")
+     t t "\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.




reply via email to

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