emacs-diffs
[Top][All Lists]
Advanced

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

emacs-29 d5e5ea4e36b: Fix guessing commands for zstandard archives in Di


From: Eli Zaretskii
Subject: emacs-29 d5e5ea4e36b: Fix guessing commands for zstandard archives in Dired
Date: Wed, 25 Oct 2023 09:32:35 -0400 (EDT)

branch: emacs-29
commit d5e5ea4e36bf1f31a06430f780445343f5932c33
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Fix guessing commands for zstandard archives in Dired
    
    * lisp/dired-aux.el (dired-guess-shell-alist-default): Fix
    zstdandard commands.  (Bug#66532)
---
 lisp/dired-aux.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index fc3f6f4f04d..3f803551f38 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -1172,7 +1172,7 @@ Return the result of `process-file' - zero for success."
          "unxz")
 
    ;; zstandard archives
-   `(,(rx (or ".tar.zst" ".tzst") eos) "unzstd -c %i | tar -xf -")
+   `(,(rx (or ".tar.zst" ".tzst") eos) "unzstd -c ? | tar -xf -")
    `(,(rx ".zst" eos)                  "unzstd --rm")
 
    '("\\.shar\\.Z\\'" "zcat * | unshar")



reply via email to

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