Variable: archive-zip-expunge

archive-zip-expunge is a customizable variable defined in arc-mode.el.gz.

Value

("zip" "-d" "-q")

Documentation

Program and its options to run in order to delete zip file members.

Archive and member names will be added.

Source Code

;; Defined in /usr/src/emacs/lisp/arc-mode.el.gz
;; For several reasons the latter behavior is not desirable in general.
;; (1) It uses more disk space.  (2) Error checking is worse or non-
;; existent.  (3) It tends to do funny things with other systems' file
;; names.

(defcustom archive-zip-expunge
  (cond ((executable-find "zip")     '("zip" "-d" "-q"))
	(archive-7z-program          `(,archive-7z-program "d"))
	((executable-find "pkzip")   '("pkzip" "-d"))
	(t                           '("zip" "-d" "-q")))
  "Program and its options to run in order to delete zip file members.
Archive and member names will be added."
  :type '(list (string :tag "Program")
	       (repeat :tag "Options"
		       :inline t
		       (string :format "%v"))))