From d279c45e9c8019b37e774d769e832ce86b7e4946 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Mon, 24 Jun 2019 16:06:54 +0200 Subject: [PATCH] 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). --- lib-src/etags.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib-src/etags.c b/lib-src/etags.c index 6165872e4cf..f70a1f67bc8 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -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 } }; -- 2.39.5