Variable: archive-7z-extract

archive-7z-extract is a customizable variable defined in arc-mode.el.gz.

Value

("7z" "x" "-so")

Documentation

Program and its options to run in order to extract a 7z file member.

Extraction should happen to standard output. Archive and member name will be added.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/arc-mode.el.gz
(defcustom archive-7z-extract
  `(,(or archive-7z-program "7z") "x" "-so")
  "Program and its options to run in order to extract a 7z file member.
Extraction should happen to standard output.  Archive and member name will
be added."
  :version "24.1"
  :type '(list (string :tag "Program")
	       (repeat :tag "Options"
		       :inline t
		       (string :format "%v"))))