This patch teaches info to read gzipped files (emacs info already

works) so one can gzip files in /usr/share/info and save a few
megabytes diskspace.

Submitted by:	Kai Vorma <vode@snakemail.hut.fi>
This commit is contained in:
Rodney W. Grimes 1995-05-14 17:54:44 +00:00
parent cb874294c9
commit 4f66643c1d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8516

View File

@ -76,6 +76,7 @@ static char *info_suffixes[] = {
static COMPRESSION_ALIST compress_suffixes[] = {
{ ".Z", "uncompress" },
{ ".Y", "unyabba" },
{ ".gz", "gunzip" },
{ ".z", "gunzip" },
{ (char *)NULL, (char *)NULL }
};