diff options
author | Ulrich Mueller <ulm@gentoo.org> | 2010-09-25 14:42:48 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-09-25 14:42:48 -0700 |
commit | 4c96435152dd2b343057f80f995910ba806774e8 (patch) | |
tree | 9c83469359d36d5337c4fdc67148b108c2f47381 /doc | |
parent | cbdd0d58773f9deda0a714e8c165b5b18b0c9527 (diff) | |
download | emacs-4c96435152dd2b343057f80f995910ba806774e8.tar.gz |
Add more xz compression support.
* doc/man/etags.1: xz compression is now supported.
* doc/misc/woman.texi (Interface Options): xz compression is now supported.
* lib-src/etags.c (compressors, print_language_names): Support xz compression.
* lisp/eshell/em-ls.el (eshell-ls-archive-regexp):
* lisp/eshell/esh-util.el (eshell-tar-regexp):
* lisp/ibuffer.el (ibuffer-compressed-file-name-regexp):
* lisp/info.el (Info-suffix-list):
* lisp/international/mule.el (auto-coding-alist):
* lisp/woman.el (woman-file-regexp, woman-file-compression-regexp):
* lisp/progmodes/etags.el (tags-compression-info-list):
Support xz compression.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/ChangeLog | 4 | ||||
-rw-r--r-- | doc/man/etags.1 | 2 | ||||
-rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
-rw-r--r-- | doc/misc/woman.texi | 4 |
4 files changed, 11 insertions, 3 deletions
diff --git a/doc/man/ChangeLog b/doc/man/ChangeLog index 47f059e7d3c..4688c27f9b5 100644 --- a/doc/man/ChangeLog +++ b/doc/man/ChangeLog @@ -1,3 +1,7 @@ +2010-09-25 Ulrich Mueller <ulm@gentoo.org> + + * etags.1: xz compression is now supported. + 2010-08-26 Sven Joachim <svenjoac@gmx.de> * emacs.1: Mention "maximized" value for the "fullscreen" X resource. diff --git a/doc/man/etags.1 b/doc/man/etags.1 index 7b515807782..cddf7295595 100644 --- a/doc/man/etags.1 +++ b/doc/man/etags.1 @@ -62,7 +62,7 @@ Files specified with absolute file names will be recorded with absolute file names. Files generated from a source file\-\-like a C file generated from a source Cweb file\-\-will be recorded with the name of the source file. -Compressed files are supported using gzip and bzip2. +Compressed files are supported using gzip, bzip2, and xz. The programs recognize the language used in an input file based on its file name and contents. The \fB\-\-language\fP switch can be used to force parsing of the file names following the switch according to the given diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 215e120078d..20dc22fc427 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -1,3 +1,7 @@ +2010-09-25 Ulrich Mueller <ulm@gentoo.org> + + * woman.texi (Interface Options): xz compression is now supported. + 2010-09-24 Glenn Morris <rgm@gnu.org> * url.texi (Disk Caching): Tweak previous change. diff --git a/doc/misc/woman.texi b/doc/misc/woman.texi index ba772c4b4a1..788c10b87dd 100644 --- a/doc/misc/woman.texi +++ b/doc/misc/woman.texi @@ -1121,8 +1121,8 @@ A regular match expression used to match compressed man file extensions for which decompressors are available and handled by auto-compression mode. It should begin with @code{\\.} and end with @code{\\'} and @emph{must not} be optional. The default value is -@code{"\\.\\(g?z\\|bz2\\)\\'"}, which matches the @code{gzip} and -@code{bzip2} compression extensions. +@code{"\\.\\(g?z\\|bz2\\|xz\\)\\'"}, which matches the @code{gzip}, +@code{bzip2}, and @code{xz} compression extensions. @emph{Do not change this unless you are sure you know what you are doing!} |