Variable: url-uncompressor-alist
url-uncompressor-alist is a customizable variable defined in
url-vars.el.gz.
Value
((".z" . "x-gzip") (".gz" . "x-gzip") (".uue" . "x-uuencoded")
(".hqx" . "x-hqx") (".Z" . "x-compress") (".bz2" . "x-bzip2")
(".xz" . "x-xz"))
Documentation
An alist of file extensions and appropriate content-transfer-encodings.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-vars.el.gz
(defcustom url-uncompressor-alist '((".z" . "x-gzip")
(".gz" . "x-gzip")
(".uue" . "x-uuencoded")
(".hqx" . "x-hqx")
(".Z" . "x-compress")
(".bz2" . "x-bzip2")
(".xz" . "x-xz"))
"An alist of file extensions and appropriate content-transfer-encodings."
:type '(repeat (cons :format "%v"
(string :tag "Extension")
(string :tag "Encoding")))
:group 'url-mime)