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 /lisp/eshell | |
parent | cbdd0d58773f9deda0a714e8c165b5b18b0c9527 (diff) | |
download | emacs-4c96435152dd2b343057f80f995910ba806774e8.tar.gz emacs-4c96435152dd2b343057f80f995910ba806774e8.tar.bz2 emacs-4c96435152dd2b343057f80f995910ba806774e8.zip |
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 'lisp/eshell')
-rw-r--r-- | lisp/eshell/em-ls.el | 3 | ||||
-rw-r--r-- | lisp/eshell/esh-util.el | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/eshell/em-ls.el b/lisp/eshell/em-ls.el index 860ad5c77d8..1bb7bd6f77a 100644 --- a/lisp/eshell/em-ls.el +++ b/lisp/eshell/em-ls.el @@ -162,10 +162,11 @@ faster and conserves more memory." (defcustom eshell-ls-archive-regexp (concat "\\.\\(t\\(a[rz]\\|gz\\)\\|arj\\|lzh\\|" - "zip\\|[zZ]\\|gz\\|bz2\\|deb\\|rpm\\)\\'") + "zip\\|[zZ]\\|gz\\|bz2\\|xz\\|deb\\|rpm\\)\\'") "*A regular expression that matches names of file archives. This typically includes both traditional archives and compressed files." + :version "24.1" ; added xz :type 'regexp :group 'eshell-ls) diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index 1a4c5e1021b..c86fa041f93 100644 --- a/lisp/eshell/esh-util.el +++ b/lisp/eshell/esh-util.el @@ -71,8 +71,9 @@ Setting this to nil is offered as an aid to debugging only." :group 'eshell-util) (defcustom eshell-tar-regexp - "\\.t\\(ar\\(\\.\\(gz\\|bz2\\|Z\\)\\)?\\|gz\\|a[zZ]\\|z2\\)\\'" + "\\.t\\(ar\\(\\.\\(gz\\|bz2\\|xz\\|Z\\)\\)?\\|gz\\|a[zZ]\\|z2\\)\\'" "*Regular expression used to match tar file names." + :version "24.1" ; added xz :type 'regexp :group 'eshell-util) |