diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-24 16:06:54 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-24 16:08:12 +0200 |
commit | d279c45e9c8019b37e774d769e832ce86b7e4946 (patch) | |
tree | f8d6770026e8a846ee041be61d9e8b9a9900de59 /lib-src | |
parent | bc88b6b3193d1c4f8ebe6e8bd0fcc4a62bffa92c (diff) | |
download | emacs-d279c45e9c8019b37e774d769e832ce86b7e4946.tar.gz |
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).
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/etags.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 } }; |