emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master d279c45 6/6: Remove -q from zstd invocation


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master d279c45 6/6: Remove -q from zstd invocation
Date: Mon, 24 Jun 2019 10:08:22 -0400 (EDT)

branch: master
commit d279c45e9c8019b37e774d769e832ce86b7e4946
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    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 6165872..f70a1f6 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 }
 };
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]