comparison lisp/packages/jka-compr.el @ 207:e45d5e7c476e r20-4b2

Import from CVS: tag r20-4b2
author cvs
date Mon, 13 Aug 2007 10:03:52 +0200
parents 489f57a838ef
children
comparison
equal deleted inserted replaced
206:d3e9274cbc4e 207:e45d5e7c476e
137 "unzipping" "gzip" ("-c" "-q" "-d") 137 "unzipping" "gzip" ("-c" "-q" "-d")
138 t nil] 138 t nil]
139 ["\\.gz\\(~\\|\\.~[0-9]+~\\)?\\'" 139 ["\\.gz\\(~\\|\\.~[0-9]+~\\)?\\'"
140 "zipping" "gzip" ("-c" "-q") 140 "zipping" "gzip" ("-c" "-q")
141 "unzipping" "gzip" ("-c" "-q" "-d") 141 "unzipping" "gzip" ("-c" "-q" "-d")
142 t t]) 142 t t]
143 ["\\.bz2\\(~\\|\\.~[0-9]+~\\)?\\'"
144 "bzipping" "bzip2" ("-f")
145 "unbzipping" "bzip2" ("-d")
146 nil t])
143 147
144 "List of vectors that describe available compression techniques. 148 "List of vectors that describe available compression techniques.
145 Each element, which describes a compression technique, is a vector of 149 Each element, which describes a compression technique, is a vector of
146 the form [REGEXP COMPRESS-MSG COMPRESS-PROGRAM COMPRESS-ARGS 150 the form [REGEXP COMPRESS-MSG COMPRESS-PROGRAM COMPRESS-ARGS
147 UNCOMPRESS-MSG UNCOMPRESS-PROGRAM UNCOMPRESS-ARGS 151 UNCOMPRESS-MSG UNCOMPRESS-PROGRAM UNCOMPRESS-ARGS
162 166
163 uncompress-program is a program that performs this compression 167 uncompress-program is a program that performs this compression
164 168
165 uncompress-args is a list of args to pass to the uncompress program 169 uncompress-args is a list of args to pass to the uncompress program
166 170
167 append-flag is non-nil if this compression technique can be 171 append-flag is non-nil if files compressed with this technique can
168 appended 172 be appended to without decompressing them first.
169 173
170 auto-mode flag non-nil means strip the regexp from file names 174 auto-mode flag non-nil means strip the regexp from file names
171 before attempting to set the mode. 175 before attempting to set the mode.
172 176
173 Because of the way `call-process' is defined, discarding the stderr output of 177 Because of the way `call-process' is defined, discarding the stderr output of