* edit.c (edit_filters): Use gzip, not compress for *.Z files

for consistency with other parts of the code (viewer, mc.ext).
This commit is contained in:
Pavel Roskin 2002-09-04 18:57:14 +00:00
parent 12d62c868d
commit b5265f8da5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-09-04 Pavel Roskin <proski@gnu.org>
* edit.c (edit_filters): Use gzip, not compress for *.Z files
for consistency with other parts of the code (viewer, mc.ext).
2002-09-03 Pavel Roskin <proski@gnu.org>
* editcmd.c: Recheck and fix all calls to create_dlg().

View File

@ -231,7 +231,7 @@ static const struct edit_filters {
"gzip -cd %s 2>&1", "gzip > %s", ".gz"
},
{
"compress -cd %s 2>&1", "compress > %s", ".Z"
"gzip -cd %s 2>&1", "gzip > %s", ".Z"
}
};