]> git.eshelyaron.com Git - emacs.git/commitdiff
arc-mode.el (archive-zip-extract): If w32-quote-process-args is nil, do quote
authorEli Zaretskii <eliz@gnu.org>
Fri, 10 Dec 2010 11:56:44 +0000 (13:56 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 10 Dec 2010 11:56:44 +0000 (13:56 +0200)
 archive member names.  Suggested by hm <helmut.muelner@joanneum.at>.

lisp/ChangeLog
lisp/arc-mode.el

index 4043498c2e5091268ce786666a48dbdce701eb84..97d78d8070c54612840db9eac3628a953ca017f8 100644 (file)
@@ -1,3 +1,8 @@
+2010-12-10  Eli Zaretskii  <eliz@gnu.org>
+
+       * arc-mode.el (archive-zip-extract): If w32-quote-process-args is
+       nil, do quote archive member names.  (Bug#6144)
+
 2010-12-10  Glenn Morris  <rgm@gnu.org>
 
        * files.el (diff-no-select): Declare.
index a86203a47db0637d9e0e08109a3a7182144278c4..4a80b74e958f5a9544484f917c7ec2947a314bbf 100644 (file)
@@ -1813,10 +1813,12 @@ This doesn't recover lost files, it just undoes changes in the buffer itself."
      archive
      ;; 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.
+     ;; systems (unless w32-quote-process-args is nil), and file names
+     ;; with wildcards in zip archives don't work there anyway.
      ;; FIXME: Does pkunzip need similar treatment?
-     (if (and (not (memq system-type '(windows-nt ms-dos)))
+     (if (and (or (not (memq system-type '(windows-nt ms-dos)))
+                 (and (boundp 'w32-quote-process-args)
+                      (null w32-quote-process-args)))
              (equal (car archive-zip-extract) "unzip"))
         (shell-quote-argument name)
        name)