comparison lisp/info.el @ 110579:5fabe7db5188

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.
author Glenn Morris <rgm@gnu.org>
date Sat, 25 Sep 2010 14:42:48 -0700
parents 10e66ac64b61
children fca66d4226a6
comparison
equal deleted inserted replaced
110578:5874484c8de5 110579:5fabe7db5188
400 '( (".info.Z". "uncompress") 400 '( (".info.Z". "uncompress")
401 (".info.Y". "unyabba") 401 (".info.Y". "unyabba")
402 (".info.gz". "gunzip") 402 (".info.gz". "gunzip")
403 (".info.z". "gunzip") 403 (".info.z". "gunzip")
404 (".info.bz2" . ("bzip2" "-dc")) 404 (".info.bz2" . ("bzip2" "-dc"))
405 (".info.xz". "unxz")
405 (".info". nil) 406 (".info". nil)
406 ("-info.Z". "uncompress") 407 ("-info.Z". "uncompress")
407 ("-info.Y". "unyabba") 408 ("-info.Y". "unyabba")
408 ("-info.gz". "gunzip") 409 ("-info.gz". "gunzip")
409 ("-info.bz2" . ("bzip2" "-dc")) 410 ("-info.bz2" . ("bzip2" "-dc"))
410 ("-info.z". "gunzip") 411 ("-info.z". "gunzip")
412 ("-info.xz". "unxz")
411 ("-info". nil) 413 ("-info". nil)
412 ("/index.Z". "uncompress") 414 ("/index.Z". "uncompress")
413 ("/index.Y". "unyabba") 415 ("/index.Y". "unyabba")
414 ("/index.gz". "gunzip") 416 ("/index.gz". "gunzip")
415 ("/index.z". "gunzip") 417 ("/index.z". "gunzip")
416 ("/index.bz2". ("bzip2" "-dc")) 418 ("/index.bz2". ("bzip2" "-dc"))
419 ("/index.xz". "unxz")
417 ("/index". nil) 420 ("/index". nil)
418 (".Z". "uncompress") 421 (".Z". "uncompress")
419 (".Y". "unyabba") 422 (".Y". "unyabba")
420 (".gz". "gunzip") 423 (".gz". "gunzip")
421 (".z". "gunzip") 424 (".z". "gunzip")
422 (".bz2" . ("bzip2" "-dc")) 425 (".bz2" . ("bzip2" "-dc"))
426 (".xz". "unxz")
423 ("". nil))) 427 ("". nil)))
424 "List of file name suffixes and associated decoding commands. 428 "List of file name suffixes and associated decoding commands.
425 Each entry should be (SUFFIX . STRING); the file is given to 429 Each entry should be (SUFFIX . STRING); the file is given to
426 the command as standard input. 430 the command as standard input.
427 431