From aca54191748018f741c8fdd274df142f20a8d2a0 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 25 Jun 2010 14:42:47 +0300 Subject: [PATCH] Fix bugs #6144 and #6467. arc-mode.el (archive-zip-extract): Don't quote the file name on MS-Windows and MS-DOS. (Bug#6467, Bug#6144) --- lisp/ChangeLog | 5 +++++ lisp/arc-mode.el | 8 ++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4c816a779e9..ca9e18ad585 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-06-25 Eli Zaretskii + + * arc-mode.el (archive-zip-extract): Don't quote the file name on + MS-Windows and MS-DOS. (Bug#6467, Bug#6144) + 2010-06-24 Štěpán Němec (tiny change) * comint.el (make-comint, make-comint-in-buffer): Mention return diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el index 5942e920a65..1cb3ade9a2d 100644 --- a/lisp/arc-mode.el +++ b/lisp/arc-mode.el @@ -1791,9 +1791,13 @@ This doesn't recover lost files, it just undoes changes in the buffer itself." (archive-*-extract archive name archive-zip-extract) (archive-extract-by-stdout archive - ;; unzip expands wildcards in NAME, so we need to quote it. + ;; unzip expands wildcards in NAME, so we need to quote it. But + ;; not on DOS/Windows, since that fails extraction on those + ;; systems, and file names with wildcards in zip archives don't + ;; work there anyway. ;; FIXME: Does pkunzip need similar treatment? - (if (equal (car archive-zip-extract) "unzip") + (if (and (not (memq system-type '(windows-nt ms-dos))) + (equal (car archive-zip-extract) "unzip")) (shell-quote-argument name) name) archive-zip-extract))) -- 2.11.4.GIT