]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove -q from zstd invocation
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 24 Jun 2019 14:06:54 +0000 (16:06 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 24 Jun 2019 14:08:12 +0000 (16:08 +0200)
* 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

index 6165872e4cfcd184aaa81966c555e15f709dba04..f70a1f67bc8352f6ec55a6037a912efeb5e21a06 100644 (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 }
 };