1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

(Info-suffix-list): Handle .gz suffix.

This commit is contained in:
Richard M. Stallman 1993-06-03 03:54:55 +00:00
parent 71b3c0e6c6
commit 4d31bfee3e

View File

@ -81,14 +81,16 @@ Marker points nowhere if file has no tag table.")
(defvar Info-index-alternatives nil
"List of possible matches for last Info-index command.")
(defvar Info-suffix-list '( ("" . nil)
(".info" . nil)
(".Z" . "uncompress")
(".Y" . "unyabba")
(".z" . "gunzip")
(".info.Z" . "uncompress")
(".info.Y" . "unyabba")
(".info.z" . "gunzip"))
(defvar Info-suffix-list '( ("" . nil)
(".info" . nil)
(".Z" . "uncompress")
(".Y" . "unyabba")
(".gz" . "gunzip")
(".z" . "gunzip")
(".info.Z" . "uncompress")
(".info.Y" . "unyabba")
(".info.gz" . "gunzip")
(".info.z" . "gunzip"))
"List of file name suffixes and associated decoding commands.
Each entry should be (SUFFIX . STRING); the file is given to
the command as standard input. If STRING is nil, no decoding is done.")