Variable: archive-zip-update-case

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

Value

("zip" "-q" "-k")

Documentation

Program and its options to run in order to update a case fiddled zip member.

Options should ensure that specified directory will be put into the zip file. Archive and member name will be added.

Source Code

;; Defined in /usr/src/emacs/lisp/arc-mode.el.gz
(defcustom archive-zip-update-case
  (cond ((executable-find "zip")     '("zip" "-q" "-k"))
	(archive-7z-program          `(,archive-7z-program "u"))
	((executable-find "pkzip")   '("pkzip" "-u" "-P"))
	(t                           '("zip" "-q" "-k")))
  "Program and its options to run in order to update a case fiddled zip member.
Options should ensure that specified directory will be put into the zip file.
Archive and member name will be added."
  :type '(list (string :tag "Program")
	       (repeat :tag "Options"
		       :inline t
		       (string :format "%v"))))