Remove -q from zstd invocation

* lib-src/etags.c (compressors): -q isn't necessary since standard
output goes to /dev/null.  From Michael Albinus (bug#33919).
This commit is contained in:
Lars Ingebrigtsen 2019-06-24 16:06:54 +02:00
parent bc88b6b319
commit d279c45e9c

View file

@ -519,7 +519,7 @@ static compressor compressors[] =
{ "GZ", "gzip -d -c"},
{ "bz2", "bzip2 -d -c" },
{ "xz", "xz -d -c" },
{ "zst", "zstd -d -c -q" },
{ "zst", "zstd -d -c" },
{ NULL }
};