From: Lars Ingebrigtsen Date: Mon, 24 Jun 2019 14:06:54 +0000 (+0200) Subject: Remove -q from zstd invocation X-Git-Tag: emacs-27.0.90~2269 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d279c45e9c8019b37e774d769e832ce86b7e4946;p=emacs.git 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). --- 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 } };