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:
parent
bc88b6b319
commit
d279c45e9c
1 changed files with 1 additions and 1 deletions
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue