(handwrite): Require ps-print, and use ps-printer-name and
[bpt/emacs.git] / lisp / arc-mode.el
CommitLineData
665211a3
KH
1;;; arc-mode.el --- simple editing of archives
2
380683ed 3;; Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc.
665211a3 4
0acdb863 5;; Author: Morten Welinder <terra@diku.dk>
665211a3
KH
6;; Keywords: archives msdog editing major-mode
7;; Favourite-brand-of-beer: None, I hate beer.
8
b578f267
EN
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
665211a3
KH
25
26;;; Commentary:
b578f267 27
665211a3
KH
28;; NAMING: "arc" is short for "archive" and does not refer specifically
29;; to files whose name end in ".arc"
30;;
31;; This code does not decode any files internally, although it does
32;; understand the directory level of the archives. For this reason,
33;; you should expect this code to need more fiddling than tar-mode.el
34;; (although it at present has fewer bugs :-) In particular, I have
35;; not tested this under Ms-Dog myself.
36;; -------------------------------------
37;; INTERACTION: arc-mode.el should play together with
38;;
39;; * ange-ftp.el: Remote archives (i.e., ones that ange-ftp has brought
40;; to you) are handled by doing all updates on a local
41;; copy. When you make changes to a remote file the
42;; changes will first take effect when the archive buffer
43;; is saved. You will be warned about this.
44;;
45;; * dos-fns.el: (Part of Emacs 19). You get automatic ^M^J <--> ^J
46;; conversion.
47;;
48;; arc-mode.el does not work well with crypt++.el; for the archives as
49;; such this could be fixed (but wouldn't be useful) by declaring such
50;; archives to be "remote". For the members this is a general Emacs
51;; problem that 19.29's file formats may fix.
52;; -------------------------------------
53;; ARCHIVE TYPES: Currently only the archives below are handled, but the
54;; structure for handling just about anything is in place.
55;;
56;; Arc Lzh Zip Zoo
57;; --------------------------------
58;; View listing Intern Intern Intern Intern
59;; Extract member Y Y Y Y
60;; Save changed member Y Y Y Y
61;; Add new member N N N N
62;; Delete member Y Y Y Y
63;; Rename member Y Y N N
64;; Chmod - Y Y -
65;; Chown - Y - -
66;; Chgrp - Y - -
67;;
68;; Special thanks to Bill Brodie <wbrodie@panix.com> for very useful tips
69;; on the first released version of this package.
70;;
71;; This code is partly based on tar-mode.el from Emacs.
72;; -------------------------------------
73;; ARCHIVE STRUCTURES:
74;; (This is mostly for myself.)
75;;
76;; ARC A series of (header,file). No interactions among members.
77;;
78;; LZH A series of (header,file). Headers are checksummed. No
79;; interaction among members.
80;;
81;; ZIP A series of (lheader,fil) followed by a "central directory"
82;; which is a series of (cheader) followed by an end-of-
83;; central-dir record possibly followed by junk. The e-o-c-d
84;; links to c-d. cheaders link to lheaders which are basically
85;; cut-down versions of the cheaders.
86;;
87;; ZOO An archive header followed by a series of (header,file).
88;; Each member header points to the next. The archive is
89;; terminated by a bogus header with a zero next link.
90;; -------------------------------------
665211a3
KH
91;; HOOKS: `foo' means one the the supported archive types.
92;;
93;; archive-mode-hook
94;; archive-foo-mode-hook
95;; archive-extract-hooks
96
97;;; Code:
98
99;; -------------------------------------------------------------------------
100;; Section: Configuration.
101
c38eb0a8
RS
102(defgroup archive nil
103 "Simple editing of archives."
104 :group 'data)
665211a3 105
c38eb0a8
RS
106(defgroup archive-arc nil
107 "ARC-specific options to archive."
108 :group 'archive)
109
110(defgroup archive-lzh nil
111 "LZH-specific options to archive."
112 :group 'archive)
113
114(defgroup archive-zip nil
115 "ZIP-specific options to archive."
116 :group 'archive)
117
118(defgroup archive-zoo nil
119 "ZOO-specific options to archive."
120 :group 'archive)
121
c38eb0a8 122(defcustom archive-tmpdir
380683ed
EZ
123 (make-temp-name
124 (expand-file-name (if (eq system-type 'ms-dos) "ar" "archive.tmp")
0adf5079 125 temporary-file-directory))
c38eb0a8
RS
126 "*Directory for temporary files made by arc-mode.el"
127 :type 'directory
128 :group 'archive)
665211a3 129
c38eb0a8 130(defcustom archive-remote-regexp "^/[^/:]*[^/:.]:"
eeba65ed
RS
131 "*Regexp recognizing archive files names that are not local.
132A non-local file is one whose file name is not proper outside Emacs.
c38eb0a8
RS
133A local copy of the archive will be used when updating."
134 :type 'regexp
135 :group 'archive)
136
137(defcustom archive-extract-hooks nil
138 "*Hooks to run when an archive member has been extracted."
139 :type 'hook
140 :group 'archive)
665211a3
KH
141;; ------------------------------
142;; Arc archive configuration
143
144;; We always go via a local file since there seems to be no reliable way
145;; to extract to stdout without junk getting added.
c38eb0a8 146(defcustom archive-arc-extract
665211a3 147 '("arc" "x")
eeba65ed
RS
148 "*Program and its options to run in order to extract an arc file member.
149Extraction should happen to the current directory. Archive and member
c38eb0a8
RS
150name will be added."
151 :type '(list (string :tag "Program")
152 (repeat :tag "Options"
153 :inline t
154 (string :format "%v")))
155 :group 'archive-arc)
156
157(defcustom archive-arc-expunge
665211a3
KH
158 '("arc" "d")
159 "*Program and its options to run in order to delete arc file members.
c38eb0a8
RS
160Archive and member names will be added."
161 :type '(list (string :tag "Program")
162 (repeat :tag "Options"
163 :inline t
164 (string :format "%v")))
165 :group 'archive-arc)
166
167(defcustom archive-arc-write-file-member
665211a3
KH
168 '("arc" "u")
169 "*Program and its options to run in order to update an arc file member.
c38eb0a8
RS
170Archive and member name will be added."
171 :type '(list (string :tag "Program")
172 (repeat :tag "Options"
173 :inline t
174 (string :format "%v")))
175 :group 'archive-arc)
665211a3
KH
176;; ------------------------------
177;; Lzh archive configuration
178
c38eb0a8 179(defcustom archive-lzh-extract
665211a3 180 '("lha" "pq")
eeba65ed
RS
181 "*Program and its options to run in order to extract an lzh file member.
182Extraction should happen to standard output. Archive and member name will
c38eb0a8
RS
183be added."
184 :type '(list (string :tag "Program")
185 (repeat :tag "Options"
186 :inline t
187 (string :format "%v")))
188 :group 'archive-lzh)
189
190(defcustom archive-lzh-expunge
665211a3
KH
191 '("lha" "d")
192 "*Program and its options to run in order to delete lzh file members.
c38eb0a8
RS
193Archive and member names will be added."
194 :type '(list (string :tag "Program")
195 (repeat :tag "Options"
196 :inline t
197 (string :format "%v")))
198 :group 'archive-lzh)
199
200(defcustom archive-lzh-write-file-member
665211a3
KH
201 '("lha" "a")
202 "*Program and its options to run in order to update an lzh file member.
c38eb0a8
RS
203Archive and member name will be added."
204 :type '(list (string :tag "Program")
205 (repeat :tag "Options"
206 :inline t
207 (string :format "%v")))
208 :group 'archive-lzh)
665211a3
KH
209;; ------------------------------
210;; Zip archive configuration
211
c38eb0a8 212(defcustom archive-zip-use-pkzip (memq system-type '(ms-dos windows-nt))
eeba65ed 213 "*If non-nil then pkzip option are used instead of zip options.
c38eb0a8
RS
214Only set to true for msdog systems!"
215 :type 'boolean
216 :group 'archive-zip)
665211a3 217
c38eb0a8 218(defcustom archive-zip-extract
b48fa570 219 (if archive-zip-use-pkzip '("pkunzip" "-e" "-o-") '("unzip" "-qq" "-c"))
eeba65ed
RS
220 "*Program and its options to run in order to extract a zip file member.
221Extraction should happen to standard output. Archive and member name will
222be added. If `archive-zip-use-pkzip' is non-nil then this program is
c38eb0a8
RS
223expected to extract to a file junking the directory part of the name."
224 :type '(list (string :tag "Program")
225 (repeat :tag "Options"
226 :inline t
227 (string :format "%v")))
228 :group 'archive-zip)
665211a3 229
e946e18c 230;; For several reasons the latter behaviour is not desirable in general.
665211a3
KH
231;; (1) It uses more disk space. (2) Error checking is worse or non-
232;; existent. (3) It tends to do funny things with other systems' file
233;; names.
234
c38eb0a8 235(defcustom archive-zip-expunge
665211a3
KH
236 (if archive-zip-use-pkzip '("pkzip" "-d") '("zip" "-d" "-q"))
237 "*Program and its options to run in order to delete zip file members.
c38eb0a8
RS
238Archive and member names will be added."
239 :type '(list (string :tag "Program")
240 (repeat :tag "Options"
241 :inline t
242 (string :format "%v")))
243 :group 'archive-zip)
244
245(defcustom archive-zip-update
665211a3
KH
246 (if archive-zip-use-pkzip '("pkzip" "-u") '("zip" "-q"))
247 "*Program and its options to run in order to update a zip file member.
248Options should ensure that specified directory will be put into the zip
c38eb0a8
RS
249file. Archive and member name will be added."
250 :type '(list (string :tag "Program")
251 (repeat :tag "Options"
252 :inline t
253 (string :format "%v")))
254 :group 'archive-zip)
255
256(defcustom archive-zip-update-case
665211a3 257 (if archive-zip-use-pkzip archive-zip-update '("zip" "-q" "-k"))
eeba65ed
RS
258 "*Program and its options to run in order to update a case fiddled zip member.
259Options should ensure that specified directory will be put into the zip file.
c38eb0a8
RS
260Archive and member name will be added."
261 :type '(list (string :tag "Program")
262 (repeat :tag "Options"
263 :inline t
264 (string :format "%v")))
265 :group 'archive-zip)
266
267(defcustom archive-zip-case-fiddle t
380683ed
EZ
268 "*If non-nil then zip file members may be down-cased.
269This case fiddling will only happen for members created by a system
270that uses caseless file names."
c38eb0a8
RS
271 :type 'boolean
272 :group 'archive-zip)
665211a3
KH
273;; ------------------------------
274;; Zoo archive configuration
275
c38eb0a8 276(defcustom archive-zoo-extract
665211a3 277 '("zoo" "xpq")
eeba65ed
RS
278 "*Program and its options to run in order to extract a zoo file member.
279Extraction should happen to standard output. Archive and member name will
c38eb0a8
RS
280be added."
281 :type '(list (string :tag "Program")
282 (repeat :tag "Options"
283 :inline t
284 (string :format "%v")))
285 :group 'archive-zoo)
286
287(defcustom archive-zoo-expunge
665211a3
KH
288 '("zoo" "DqPP")
289 "*Program and its options to run in order to delete zoo file members.
c38eb0a8
RS
290Archive and member names will be added."
291 :type '(list (string :tag "Program")
292 (repeat :tag "Options"
293 :inline t
294 (string :format "%v")))
295 :group 'archive-zoo)
296
297(defcustom archive-zoo-write-file-member
665211a3
KH
298 '("zoo" "a")
299 "*Program and its options to run in order to update a zoo file member.
c38eb0a8
RS
300Archive and member name will be added."
301 :type '(list (string :tag "Program")
302 (repeat :tag "Options"
303 :inline t
304 (string :format "%v")))
305 :group 'archive-zoo)
665211a3
KH
306;; -------------------------------------------------------------------------
307;; Section: Variables
308
309(defvar archive-subtype nil "*Symbol describing archive type.")
310(defvar archive-file-list-start nil "*Position of first contents line.")
311(defvar archive-file-list-end nil "*Position just after last contents line.")
312(defvar archive-proper-file-start nil "*Position of real archive's start.")
313(defvar archive-read-only nil "*Non-nil if the archive is read-only on disk.")
665211a3
KH
314(defvar archive-local-name nil "*Name of local copy of remote archive.")
315(defvar archive-mode-map nil "*Local keymap for archive mode listings.")
316(defvar archive-file-name-indent nil "*Column where file names start.")
317
380683ed
EZ
318(defvar archive-remote nil "*Non-nil if the archive is outside file system.")
319(make-variable-buffer-local 'archive-remote)
320(put 'archive-remote 'permanent-local t)
321
322(defvar archive-member-coding-system nil "Coding-system of archive member.")
323(make-variable-buffer-local 'archive-member-coding-system)
324
665211a3
KH
325(defvar archive-alternate-display nil
326 "*Non-nil when alternate information is shown.")
327(make-variable-buffer-local 'archive-alternate-display)
328(put 'archive-alternate-display 'permanent-local t)
329
330(defvar archive-superior-buffer nil "*In archive members, points to archive.")
331(put 'archive-superior-buffer 'permanent-local t)
332
333(defvar archive-subfile-mode nil "*Non-nil in archive member buffers.")
334(make-variable-buffer-local 'archive-subfile-mode)
335(put 'archive-subfile-mode 'permanent-local t)
336
c4de97b4
RS
337(defvar archive-files nil
338 "Vector of file descriptors.
339Each descriptor is a vector of the form
340 [EXT-FILE-NAME INT-FILE-NAME CASE-FIDDLED MODE ...]")
665211a3 341(make-variable-buffer-local 'archive-files)
43f657ea
KH
342
343(defvar archive-lemacs
344 (string-match "\\(Lucid\\|Xemacs\\)" emacs-version)
345 "*Non-nil when running under under Lucid Emacs or Xemacs.")
665211a3
KH
346;; -------------------------------------------------------------------------
347;; Section: Support functions.
348
349(defsubst archive-name (suffix)
350 (intern (concat "archive-" (symbol-name archive-subtype) "-" suffix)))
351
352(defun archive-l-e (str &optional len)
eeba65ed
RS
353 "Convert little endian string/vector to integer.
354Alternatively, first argument may be a buffer position in the current buffer
355in which case a second argument, length, should be supplied."
665211a3
KH
356 (if (stringp str)
357 (setq len (length str))
358 (setq str (buffer-substring str (+ str len))))
359 (let ((result 0)
360 (i 0))
361 (while (< i len)
362 (setq i (1+ i)
363 result (+ (ash result 8) (aref str (- len i)))))
364 result))
365
366(defun archive-int-to-mode (mode)
367 "Turn an integer like 0700 (i.e., 448) into a mode string like -rwx------"
368 (let ((str (make-string 10 ?-)))
369 (or (zerop (logand 16384 mode)) (aset str 0 ?d))
370 (or (zerop (logand 8192 mode)) (aset str 0 ?c)) ; completeness
371 (or (zerop (logand 256 mode)) (aset str 1 ?r))
372 (or (zerop (logand 128 mode)) (aset str 2 ?w))
373 (or (zerop (logand 64 mode)) (aset str 3 ?x))
374 (or (zerop (logand 32 mode)) (aset str 4 ?r))
375 (or (zerop (logand 16 mode)) (aset str 5 ?w))
376 (or (zerop (logand 8 mode)) (aset str 6 ?x))
377 (or (zerop (logand 4 mode)) (aset str 7 ?r))
378 (or (zerop (logand 2 mode)) (aset str 8 ?w))
379 (or (zerop (logand 1 mode)) (aset str 9 ?x))
380 (or (zerop (logand 1024 mode)) (aset str 3 (if (zerop (logand 64 mode))
381 ?S ?s)))
382 (or (zerop (logand 2048 mode)) (aset str 6 (if (zerop (logand 8 mode))
383 ?S ?s)))
384 str))
385
386(defun archive-calc-mode (oldmode newmode &optional error)
eeba65ed 387 "From the integer OLDMODE and the string NEWMODE calculate a new file mode.
665211a3
KH
388NEWMODE may be an octal number including a leading zero in which case it
389will become the new mode.\n
390NEWMODE may also be a relative specification like \"og-rwx\" in which case
391OLDMODE will be modified accordingly just like chmod(2) would have done.\n
392If optional third argument ERROR is non-nil an error will be signaled if
393the mode is invalid. If ERROR is nil then nil will be returned."
394 (cond ((string-match "^0[0-7]*$" newmode)
395 (let ((result 0)
396 (len (length newmode))
397 (i 1))
398 (while (< i len)
399 (setq result (+ (lsh result 3) (aref newmode i) (- ?0))
400 i (1+ i)))
401 (logior (logand oldmode 65024) result)))
402 ((string-match "^\\([agou]+\\)\\([---+=]\\)\\([rwxst]+\\)$" newmode)
403 (let ((who 0)
404 (result oldmode)
405 (op (aref newmode (match-beginning 2)))
406 (bits 0)
407 (i (match-beginning 3)))
408 (while (< i (match-end 3))
409 (let ((rwx (aref newmode i)))
410 (setq bits (logior bits (cond ((= rwx ?r) 292)
411 ((= rwx ?w) 146)
412 ((= rwx ?x) 73)
413 ((= rwx ?s) 3072)
414 ((= rwx ?t) 512)))
415 i (1+ i))))
416 (while (< who (match-end 1))
417 (let* ((whoc (aref newmode who))
418 (whomask (cond ((= whoc ?a) 4095)
419 ((= whoc ?u) 1472)
420 ((= whoc ?g) 2104)
421 ((= whoc ?o) 7))))
422 (if (= op ?=)
423 (setq result (logand result (lognot whomask))))
424 (if (= op ?-)
425 (setq result (logand result (lognot (logand whomask bits))))
426 (setq result (logior result (logand whomask bits)))))
427 (setq who (1+ who)))
428 result))
429 (t
430 (if error
431 (error "Invalid mode specification: %s" newmode)))))
432
433(defun archive-dosdate (date)
434 "Stringify dos packed DATE record."
435 (let ((year (+ 1980 (logand (ash date -9) 127)))
436 (month (logand (ash date -5) 15))
437 (day (logand date 31)))
438 (if (or (> month 12) (< month 1))
439 ""
440 (format "%2d-%s-%d"
441 day
442 (aref ["Jan" "Feb" "Mar" "Apr" "May" "Jun"
443 "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"] (1- month))
444 year))))
445
446(defun archive-dostime (time)
447 "Stringify dos packed TIME record."
448 (let ((hour (logand (ash time -11) 31))
449 (minute (logand (ash time -5) 53))
450 (second (* 2 (logand time 31)))) ; 2 seconds resolution
451 (format "%02d:%02d:%02d" hour minute second)))
452
453;;(defun archive-unixdate (low high)
454;; "Stringify unix (LOW HIGH) date."
455;; (let ((str (current-time-string (cons high low))))
456;; (format "%s-%s-%s"
457;; (substring str 8 9)
458;; (substring str 4 7)
459;; (substring str 20 24))))
460
461;;(defun archive-unixtime (low high)
462;; "Stringify unix (LOW HIGH) time."
463;; (let ((str (current-time-string (cons high low))))
464;; (substring str 11 19)))
465
466(defun archive-get-lineno ()
467 (if (>= (point) archive-file-list-start)
468 (count-lines archive-file-list-start
469 (save-excursion (beginning-of-line) (point)))
470 0))
471
472(defun archive-get-descr (&optional noerror)
eeba65ed
RS
473 "Return the descriptor vector for file at point.
474Does not signal an error if optional second argument NOERROR is non-nil."
665211a3
KH
475 (let ((no (archive-get-lineno)))
476 (if (and (>= (point) archive-file-list-start)
477 (< no (length archive-files)))
478 (let ((item (aref archive-files no)))
479 (if (vectorp item)
480 item
481 (if (not noerror)
482 (error "Entry is not a regular member of the archive"))))
483 (if (not noerror)
484 (error "Line does not describe a member of the archive")))))
485;; -------------------------------------------------------------------------
486;; Section: the mode definition
487
9199a670 488;;;###autoload
665211a3 489(defun archive-mode (&optional force)
eeba65ed
RS
490 "Major mode for viewing an archive file in a dired-like way.
491You can move around using the usual cursor motion commands.
665211a3
KH
492Letters no longer insert themselves.
493Type `e' to pull a file out of the archive and into its own buffer;
494or click mouse-2 on the file's line in the archive mode buffer.
495
496If you edit a sub-file of this archive (as with the `e' command) and
497save it, the contents of that buffer will be saved back into the
498archive.
499
500\\{archive-mode-map}"
501 ;; This is not interactive because you shouldn't be turning this
502 ;; mode on and off. You can corrupt things that way.
503 (if (zerop (buffer-size))
504 ;; At present we cannot create archives from scratch
505 (funcall default-major-mode)
506 (if (and (not force) archive-files) nil
507 (let* ((type (archive-find-type))
508 (typename (copy-sequence (symbol-name type))))
509 (aset typename 0 (upcase (aref typename 0)))
510 (kill-all-local-variables)
511 (make-local-variable 'archive-subtype)
512 (setq archive-subtype type)
513
514 ;; Buffer contains treated image of file before the file contents
515 (make-local-variable 'revert-buffer-function)
516 (setq revert-buffer-function 'archive-mode-revert)
517 (auto-save-mode 0)
665211a3 518
380683ed
EZ
519 ;; Remote archives are not written by a hook.
520 (if archive-remote nil
521 (make-local-variable 'write-contents-hooks)
522 (add-hook 'write-contents-hooks 'archive-write-file))
523
665211a3
KH
524 (make-local-variable 'require-final-newline)
525 (setq require-final-newline nil)
28138f8c
RS
526 (make-local-variable 'local-enable-local-variables)
527 (setq local-enable-local-variables nil)
665211a3 528
938c6472
RS
529 ;; Prevent loss of data when saving the file.
530 (make-local-variable 'file-precious-flag)
531 (setq file-precious-flag t)
532
665211a3 533 (make-local-variable 'archive-read-only)
380683ed
EZ
534 ;; Archives which are inside other archives and whose
535 ;; names are invalid for this OS, can't be written.
536 (setq archive-read-only
537 (or (not (file-writable-p (buffer-file-name)))
538 (and archive-subfile-mode
4dbbd6a1 539 (string-match file-name-invalid-regexp
380683ed 540 (aref archive-subfile-mode 0)))))
665211a3
KH
541
542 ;; Should we use a local copy when accessing from outside Emacs?
543 (make-local-variable 'archive-local-name)
380683ed
EZ
544
545 ;; An archive can contain another archive whose name is invalid
546 ;; on local filesystem. Treat such archives as remote.
547 (or archive-remote
548 (setq archive-remote
549 (or (string-match archive-remote-regexp (buffer-file-name))
4dbbd6a1 550 (string-match file-name-invalid-regexp
380683ed 551 (buffer-file-name)))))
665211a3
KH
552
553 (setq major-mode 'archive-mode)
554 (setq mode-name (concat typename "-Archive"))
555 ;; Run archive-foo-mode-hook and archive-mode-hook
556 (run-hooks (archive-name "mode-hook") 'archive-mode-hook)
557 (use-local-map archive-mode-map))
558
559 (make-local-variable 'archive-proper-file-start)
560 (make-local-variable 'archive-file-list-start)
561 (make-local-variable 'archive-file-list-end)
562 (make-local-variable 'archive-file-name-indent)
380683ed 563 (archive-summarize nil)
665211a3
KH
564 (setq buffer-read-only t))))
565
566;; Archive mode is suitable only for specially formatted data.
567(put 'archive-mode 'mode-class 'special)
568;; -------------------------------------------------------------------------
569;; Section: Key maps
570
571(if archive-mode-map nil
572 (setq archive-mode-map (make-keymap))
573 (suppress-keymap archive-mode-map)
574 (define-key archive-mode-map " " 'archive-next-line)
575 (define-key archive-mode-map "a" 'archive-alternate-display)
576 ;;(define-key archive-mode-map "c" 'archive-copy)
577 (define-key archive-mode-map "d" 'archive-flag-deleted)
578 (define-key archive-mode-map "\C-d" 'archive-flag-deleted)
579 (define-key archive-mode-map "e" 'archive-extract)
580 (define-key archive-mode-map "f" 'archive-extract)
581 (define-key archive-mode-map "\C-m" 'archive-extract)
665211a3
KH
582 (define-key archive-mode-map "g" 'revert-buffer)
583 (define-key archive-mode-map "h" 'describe-mode)
584 (define-key archive-mode-map "m" 'archive-mark)
585 (define-key archive-mode-map "n" 'archive-next-line)
586 (define-key archive-mode-map "\C-n" 'archive-next-line)
587 (define-key archive-mode-map [down] 'archive-next-line)
588 (define-key archive-mode-map "o" 'archive-extract-other-window)
589 (define-key archive-mode-map "p" 'archive-previous-line)
590 (define-key archive-mode-map "\C-p" 'archive-previous-line)
591 (define-key archive-mode-map [up] 'archive-previous-line)
592 (define-key archive-mode-map "r" 'archive-rename-entry)
593 (define-key archive-mode-map "u" 'archive-unflag)
594 (define-key archive-mode-map "\M-\C-?" 'archive-unmark-all-files)
595 (define-key archive-mode-map "v" 'archive-view)
596 (define-key archive-mode-map "x" 'archive-expunge)
597 (define-key archive-mode-map "\177" 'archive-unflag-backwards)
598 (define-key archive-mode-map "E" 'archive-extract-other-window)
599 (define-key archive-mode-map "M" 'archive-chmod-entry)
600 (define-key archive-mode-map "G" 'archive-chgrp-entry)
601 (define-key archive-mode-map "O" 'archive-chown-entry)
43f657ea
KH
602
603 (if archive-lemacs
604 (progn
605 ;; Not a nice "solution" but it'll have to do
606 (define-key archive-mode-map "\C-xu" 'archive-undo)
607 (define-key archive-mode-map "\C-_" 'archive-undo))
608 (substitute-key-definition 'undo 'archive-undo
609 archive-mode-map global-map))
610
611 (define-key archive-mode-map
612 (if archive-lemacs 'button2 [mouse-2]) 'archive-mouse-extract)
613
614 (if archive-lemacs
615 () ; out of luck
616 ;; Get rid of the Edit menu bar item to save space.
617 (define-key archive-mode-map [menu-bar edit] 'undefined)
618
619 (define-key archive-mode-map [menu-bar immediate]
620 (cons "Immediate" (make-sparse-keymap "Immediate")))
621 (define-key archive-mode-map [menu-bar immediate alternate]
622 '("Alternate Display" . archive-alternate-display))
623 (put 'archive-alternate-display 'menu-enable
624 '(boundp (archive-name "alternate-display")))
625 (define-key archive-mode-map [menu-bar immediate view]
626 '("View This File" . archive-view))
627 (define-key archive-mode-map [menu-bar immediate display]
628 '("Display in Other Window" . archive-display-other-window))
629 (define-key archive-mode-map [menu-bar immediate find-file-other-window]
630 '("Find in Other Window" . archive-extract-other-window))
631 (define-key archive-mode-map [menu-bar immediate find-file]
632 '("Find This File" . archive-extract))
633
634 (define-key archive-mode-map [menu-bar mark]
635 (cons "Mark" (make-sparse-keymap "Mark")))
636 (define-key archive-mode-map [menu-bar mark unmark-all]
637 '("Unmark All" . archive-unmark-all-files))
638 (define-key archive-mode-map [menu-bar mark deletion]
639 '("Flag" . archive-flag-deleted))
640 (define-key archive-mode-map [menu-bar mark unmark]
641 '("Unflag" . archive-unflag))
642 (define-key archive-mode-map [menu-bar mark mark]
643 '("Mark" . archive-mark))
644
645 (define-key archive-mode-map [menu-bar operate]
646 (cons "Operate" (make-sparse-keymap "Operate")))
647 (define-key archive-mode-map [menu-bar operate chown]
648 '("Change Owner..." . archive-chown-entry))
649 (put 'archive-chown-entry 'menu-enable
650 '(fboundp (archive-name "chown-entry")))
651 (define-key archive-mode-map [menu-bar operate chgrp]
652 '("Change Group..." . archive-chgrp-entry))
653 (put 'archive-chgrp-entry 'menu-enable
654 '(fboundp (archive-name "chgrp-entry")))
655 (define-key archive-mode-map [menu-bar operate chmod]
656 '("Change Mode..." . archive-chmod-entry))
657 (put 'archive-chmod-entry 'menu-enable
658 '(fboundp (archive-name "chmod-entry")))
659 (define-key archive-mode-map [menu-bar operate rename]
660 '("Rename to..." . archive-rename-entry))
661 (put 'archive-rename-entry 'menu-enable
662 '(fboundp (archive-name "rename-entry")))
663 ;;(define-key archive-mode-map [menu-bar operate copy]
664 ;; '("Copy to..." . archive-copy))
665 (define-key archive-mode-map [menu-bar operate expunge]
666 '("Expunge Marked Files" . archive-expunge))
667 ))
665211a3
KH
668
669(let* ((item1 '(archive-subfile-mode " Archive"))
b48fa570 670 (items (list item1)))
665211a3
KH
671 (or (member item1 minor-mode-alist)
672 (setq minor-mode-alist (append items minor-mode-alist))))
673;; -------------------------------------------------------------------------
674(defun archive-find-type ()
675 (widen)
676 (goto-char (point-min))
677 ;; The funny [] here make it unlikely that the .elc file will be treated
678 ;; as an archive by other software.
679 (let (case-fold-search)
680 (cond ((looking-at "[P]K\003\004") 'zip)
a56636ae 681 ((looking-at "..-l[hz][0-9ds]-") 'lzh)
665211a3
KH
682 ((looking-at "....................[\334]\247\304\375") 'zoo)
683 ((and (looking-at "\C-z") ; signature too simple, IMHO
684 (string-match "\\.[aA][rR][cC]$"
685 (or buffer-file-name (buffer-name))))
686 'arc)
687 (t (error "Buffer format not recognized.")))))
688;; -------------------------------------------------------------------------
380683ed 689(defun archive-summarize (&optional shut-up)
665211a3
KH
690 "Parse the contents of the archive file in the current buffer.
691Place a dired-like listing on the front;
692then narrow to it, so that only that listing
380683ed
EZ
693is visible (and the real data of the buffer is hidden).
694Optional argument SHUT-UP, if non-nil, means don't print messages
695when parsing the archive."
665211a3 696 (widen)
eb93d233 697 (set-buffer-multibyte nil)
665211a3 698 (let (buffer-read-only)
380683ed
EZ
699 (or shut-up
700 (message "Parsing archive file..."))
665211a3
KH
701 (buffer-disable-undo (current-buffer))
702 (setq archive-files (funcall (archive-name "summarize")))
380683ed
EZ
703 (or shut-up
704 (message "Parsing archive file...done."))
665211a3
KH
705 (setq archive-proper-file-start (point-marker))
706 (narrow-to-region (point-min) (point))
707 (set-buffer-modified-p nil)
708 (buffer-enable-undo))
709 (goto-char archive-file-list-start)
710 (archive-next-line 0))
711
712(defun archive-resummarize ()
713 "Recreate the contents listing of an archive."
714 (let ((modified (buffer-modified-p))
715 (no (archive-get-lineno))
716 buffer-read-only)
717 (widen)
718 (delete-region (point-min) archive-proper-file-start)
380683ed 719 (archive-summarize t)
665211a3
KH
720 (set-buffer-modified-p modified)
721 (goto-char archive-file-list-start)
722 (archive-next-line no)))
723
724(defun archive-summarize-files (files)
c4de97b4 725 "Insert a description of a list of files annotated with proper mouse face."
665211a3
KH
726 (setq archive-file-list-start (point-marker))
727 (setq archive-file-name-indent (if files (aref (car files) 1) 0))
728 ;; We don't want to do an insert for each element since that takes too
729 ;; long when the archive -- which has to be moved in memory -- is large.
730 (insert
731 (apply
732 (function concat)
733 (mapcar
43f657ea
KH
734 (function
735 (lambda (fil)
736 ;; Using `concat' here copies the text also, so we can add
737 ;; properties without problems.
738 (let ((text (concat (aref fil 0) "\n")))
739 (if archive-lemacs
740 () ; out of luck
741 (put-text-property (aref fil 1) (aref fil 2)
742 'mouse-face 'highlight
743 text))
744 text)))
665211a3
KH
745 files)))
746 (setq archive-file-list-end (point-marker)))
747
748(defun archive-alternate-display ()
eeba65ed
RS
749 "Toggle alternative display.
750To avoid very long lines some archive mode don't show all information.
751This function changes the set of information shown for each files."
665211a3
KH
752 (interactive)
753 (setq archive-alternate-display (not archive-alternate-display))
754 (archive-resummarize))
755;; -------------------------------------------------------------------------
756;; Section: Local archive copy handling
757
380683ed
EZ
758(defun archive-unique-fname (fname dir)
759 "Make sure a file FNAME can be created uniquely in directory DIR.
760
761If FNAME can be uniquely created in DIR, it is returned unaltered.
762If FNAME is something our underlying filesystem can't grok, or if another
763file by that name already exists in DIR, a unique new name is generated
764using `make-temp-name', and the generated name is returned."
765 (let ((fullname (expand-file-name fname dir))
4dbbd6a1 766 (alien (string-match file-name-invalid-regexp fname)))
380683ed
EZ
767 (if (or alien (file-exists-p fullname))
768 (make-temp-name
769 (expand-file-name
770 (if (and (eq system-type 'ms-dos) (not (msdos-long-file-names)))
771 "am"
772 "arc-mode.")
773 dir))
774 fullname)))
775
665211a3 776(defun archive-maybe-copy (archive)
380683ed
EZ
777 (let ((coding-system-for-write 'no-conversion))
778 (if archive-remote
779 (let ((start (point-max))
780 ;; Sometimes ARCHIVE is invalid while its actual name, as
781 ;; recorded in its parent archive, is not. For example, an
782 ;; archive bar.zip inside another archive foo.zip gets a name
783 ;; "foo.zip:bar.zip", which is invalid on DOS/Windows.
784 ;; So use the actual name if available.
785 (archive-name
786 (or (and archive-subfile-mode (aref archive-subfile-mode 0))
787 archive)))
788 (make-directory archive-tmpdir t)
789 (setq archive-local-name
790 (archive-unique-fname archive-name archive-tmpdir))
791 (save-restriction
792 (widen)
793 (write-region start (point-max) archive-local-name nil 'nomessage))
794 archive-local-name)
795 (if (buffer-modified-p) (save-buffer))
796 archive)))
665211a3
KH
797
798(defun archive-maybe-update (unchanged)
799 (if archive-remote
800 (let ((name archive-local-name)
801 (modified (buffer-modified-p))
380683ed
EZ
802 (coding-system-for-read 'no-conversion)
803 (lno (archive-get-lineno))
665211a3
KH
804 buffer-read-only)
805 (if unchanged nil
380683ed 806 (setq archive-files nil)
665211a3
KH
807 (erase-buffer)
808 (insert-file-contents name)
380683ed
EZ
809 (archive-mode t)
810 (goto-char archive-file-list-start)
811 (archive-next-line lno))
665211a3
KH
812 (archive-delete-local name)
813 (if (not unchanged)
380683ed
EZ
814 (message
815 "Buffer `%s' must be saved for changes to take effect"
816 (buffer-name (current-buffer))))
665211a3
KH
817 (set-buffer-modified-p (or modified (not unchanged))))))
818
819(defun archive-delete-local (name)
eeba65ed 820 "Delete file NAME and its parents up to and including `archive-tmpdir'."
665211a3
KH
821 (let ((again t)
822 (top (directory-file-name (file-name-as-directory archive-tmpdir))))
823 (condition-case nil
824 (delete-file name)
825 (error nil))
826 (while again
827 (setq name (directory-file-name (file-name-directory name)))
828 (condition-case nil
829 (delete-directory name)
830 (error nil))
831 (if (string= name top) (setq again nil)))))
832;; -------------------------------------------------------------------------
833;; Section: Member extraction
834
eb93d233
EZ
835(defun archive-file-name-handler (op &rest args)
836 (or (eq op 'file-exists-p)
837 (let ((file-name-handler-alist nil))
838 (apply op args))))
839
840(defun archive-set-buffer-as-visiting-file (filename)
841 "Set the current buffer as if it were visiting FILENAME."
842 (save-excursion
843 (goto-char (point-min))
844 (let ((coding
845 (or coding-system-for-read
846 (and set-auto-coding-function
847 (funcall set-auto-coding-function
7e5ad777 848 filename (- (point-max) (point-min))))
eb93d233
EZ
849 ;; dos-w32.el defines find-operation-coding-system for
850 ;; DOS/Windows systems which preserves the coding-system
851 ;; of existing files. We want it to act here as if the
852 ;; extracted file existed.
853 (let ((file-name-handler-alist
854 '(("" . archive-file-name-handler))))
855 (car (find-operation-coding-system 'insert-file-contents
856 filename t))))))
857 (if (and (not coding-system-for-read)
858 (not enable-multibyte-characters))
859 (setq coding
860 (coding-system-change-text-conversion coding 'raw-text)))
861 (if (and coding
862 (not (eq coding 'no-conversion)))
863 (decode-coding-region (point-min) (point-max) coding)
864 (setq last-coding-system-used coding))
865 (set-buffer-modified-p nil)
866 (kill-local-variable 'buffer-file-coding-system)
867 (after-insert-file-set-buffer-file-coding-system (- (point-max)
868 (point-min))))))
869
665211a3
KH
870(defun archive-mouse-extract (event)
871 "Extract a file whose name you click on."
872 (interactive "e")
43f657ea
KH
873 (mouse-set-point event)
874 (switch-to-buffer
875 (save-excursion
876 (archive-extract)
877 (current-buffer))))
665211a3
KH
878
879(defun archive-extract (&optional other-window-p)
880 "In archive mode, extract this entry of the archive into its own buffer."
881 (interactive)
882 (let* ((view-p (eq other-window-p 'view))
883 (descr (archive-get-descr))
884 (ename (aref descr 0))
885 (iname (aref descr 1))
886 (archive-buffer (current-buffer))
887 (arcdir default-directory)
888 (archive (buffer-file-name))
889 (arcname (file-name-nondirectory archive))
890 (bufname (concat (file-name-nondirectory iname) " (" arcname ")"))
891 (extractor (archive-name "extract"))
380683ed
EZ
892 ;; Members with file names which aren't valid for the
893 ;; underlying filesystem, are treated as read-only.
894 (read-only-p (or archive-read-only
895 view-p
4dbbd6a1 896 (string-match file-name-invalid-regexp ename)))
665211a3
KH
897 (buffer (get-buffer bufname))
898 (just-created nil))
899 (if buffer
900 nil
901 (setq archive (archive-maybe-copy archive))
902 (setq buffer (get-buffer-create bufname))
903 (setq just-created t)
904 (save-excursion
905 (set-buffer buffer)
906 (setq buffer-file-name
907 (expand-file-name (concat arcname ":" iname)))
908 (setq buffer-file-truename
909 (abbreviate-file-name buffer-file-name))
910 ;; Set the default-directory to the dir of the superior buffer.
911 (setq default-directory arcdir)
912 (make-local-variable 'archive-superior-buffer)
913 (setq archive-superior-buffer archive-buffer)
914 (make-local-variable 'local-write-file-hooks)
915 (add-hook 'local-write-file-hooks 'archive-write-file-member)
916 (setq archive-subfile-mode descr)
b48fa570
EZ
917 (if (and
918 (null
eb93d233
EZ
919 (let (;; We may have to encode file name arguement for
920 ;; external programs.
7e5ad777
KH
921 (coding-system-for-write
922 (and enable-multibyte-characters
923 file-name-coding-system))
eb93d233
EZ
924 ;; We read an archive member by no-conversion at
925 ;; first, then decode appropriately by calling
926 ;; archive-set-buffer-as-visiting-file later.
927 (coding-system-for-read 'no-conversion))
928 (condition-case err
929 (if (fboundp extractor)
930 (funcall extractor archive ename)
931 (archive-*-extract archive ename
932 (symbol-value extractor)))
933 (error
934 (ding (message "%s" (error-message-string err)))
935 nil))))
b48fa570
EZ
936 just-created)
937 (progn
938 (set-buffer-modified-p nil)
939 (kill-buffer buffer))
eb93d233 940 (archive-set-buffer-as-visiting-file ename)
b48fa570
EZ
941 (goto-char (point-min))
942 (rename-buffer bufname)
943 (setq buffer-read-only read-only-p)
944 (setq buffer-undo-list nil)
945 (set-buffer-modified-p nil)
946 (setq buffer-saved-size (buffer-size))
947 (normal-mode)
948 ;; Just in case an archive occurs inside another archive.
949 (if (eq major-mode 'archive-mode)
380683ed
EZ
950 (progn
951 (setq archive-remote t)
952 (if read-only-p (setq archive-read-only t))
953 ;; We will write out the archive ourselves if it is
954 ;; part of another archive.
955 (remove-hook 'write-contents-hooks 'archive-write-file t)))
956 (run-hooks 'archive-extract-hooks)
957 (if archive-read-only
958 (message "Note: altering this archive is not implemented."))))
959 (archive-maybe-update t))
b48fa570
EZ
960 (or (not (buffer-name buffer))
961 (progn
962 (if view-p
5f7493ac
KH
963 (view-buffer buffer (and just-created 'kill-buffer))
964 (if (eq other-window-p 'display)
965 (display-buffer buffer)
966 (if other-window-p
967 (switch-to-buffer-other-window buffer)
968 (switch-to-buffer buffer))))))))
665211a3
KH
969
970(defun archive-*-extract (archive name command)
971 (let* ((default-directory (file-name-as-directory archive-tmpdir))
972 (tmpfile (expand-file-name (file-name-nondirectory name)
b48fa570
EZ
973 default-directory))
974 exit-status success)
665211a3 975 (make-directory (directory-file-name default-directory) t)
b48fa570
EZ
976 (setq exit-status
977 (apply 'call-process
978 (car command)
979 nil
980 nil
981 nil
982 (append (cdr command) (list archive name))))
983 (cond ((and (numberp exit-status) (= exit-status 0))
984 (if (not (file-exists-p tmpfile))
985 (ding (message "`%s': no such file or directory" tmpfile))
986 (insert-file-contents tmpfile)
987 (setq success t)))
988 ((numberp exit-status)
989 (ding
990 (message "`%s' exited with status %d" (car command) exit-status)))
991 ((stringp exit-status)
992 (ding (message "`%s' aborted: %s" (car command) exit-status)))
993 (t
994 (ding (message "`%s' failed" (car command)))))
995 (archive-delete-local tmpfile)
996 success))
665211a3
KH
997
998(defun archive-extract-by-stdout (archive name command)
eb93d233
EZ
999 (apply 'call-process
1000 (car command)
1001 nil
1002 t
1003 nil
1004 (append (cdr command) (list archive name))))
665211a3
KH
1005
1006(defun archive-extract-other-window ()
1007 "In archive mode, find this member in another window."
1008 (interactive)
1009 (archive-extract t))
1010
1011(defun archive-display-other-window ()
1012 "In archive mode, display this member in another window."
1013 (interactive)
1014 (archive-extract 'display))
1015
1016(defun archive-view ()
1017 "In archive mode, view the member on this line."
1018 (interactive)
1019 (archive-extract 'view))
1020
1021(defun archive-add-new-member (arcbuf name)
eeba65ed 1022 "Add current buffer to the archive in ARCBUF naming it NAME."
665211a3
KH
1023 (interactive
1024 (list (get-buffer
1025 (read-buffer "Buffer containing archive: "
1026 ;; Find first archive buffer and suggest that
1027 (let ((bufs (buffer-list)))
1028 (while (and bufs (not (eq (save-excursion
1029 (set-buffer (car bufs))
1030 major-mode)
1031 'archive-mode)))
1032 (setq bufs (cdr bufs)))
1033 (if bufs
1034 (car bufs)
1035 (error "There are no archive buffers")))
1036 t))
1037 (read-string "File name in archive: "
1038 (if buffer-file-name
1039 (file-name-nondirectory buffer-file-name)
1040 ""))))
1041 (save-excursion
1042 (set-buffer arcbuf)
1043 (or (eq major-mode 'archive-mode)
1044 (error "Buffer is not an archive buffer"))
1045 (if archive-read-only
1046 (error "Archive is read-only")))
1047 (if (eq arcbuf (current-buffer))
1048 (error "An archive buffer cannot be added to itself"))
1049 (if (string= name "")
1050 (error "Archive members may not be given empty names"))
1051 (let ((func (save-excursion (set-buffer arcbuf)
1052 (archive-name "add-new-member")))
1053 (membuf (current-buffer)))
1054 (if (fboundp func)
1055 (save-excursion
1056 (set-buffer arcbuf)
1057 (funcall func buffer-file-name membuf name))
1058 (error "Adding a new member is not supported for this archive type"))))
1059;; -------------------------------------------------------------------------
1060;; Section: IO stuff
1061
665211a3 1062(defun archive-write-file-member ()
b48fa570
EZ
1063 (save-excursion
1064 (save-restriction
1065 (message "Updating archive...")
1066 (widen)
1067 (let ((writer (save-excursion (set-buffer archive-superior-buffer)
1068 (archive-name "write-file-member")))
1069 (archive (save-excursion (set-buffer archive-superior-buffer)
380683ed 1070 (archive-maybe-copy (buffer-file-name)))))
b48fa570
EZ
1071 (if (fboundp writer)
1072 (funcall writer archive archive-subfile-mode)
1073 (archive-*-write-file-member archive
1074 archive-subfile-mode
380683ed
EZ
1075 (symbol-value writer)))
1076 (set-buffer-modified-p nil)
1077 (message "Updating archive...done"))
b48fa570 1078 (set-buffer archive-superior-buffer)
380683ed
EZ
1079 (if (not archive-remote) (revert-buffer) (archive-maybe-update nil))))
1080 ;; Restore the value of last-coding-system-used, so that basic-save-buffer
1081 ;; won't reset the coding-system of this archive member.
1082 (if (local-variable-p 'archive-member-coding-system)
1083 (setq last-coding-system-used archive-member-coding-system))
1084 t)
665211a3
KH
1085
1086(defun archive-*-write-file-member (archive descr command)
1087 (let* ((ename (aref descr 0))
1088 (tmpfile (expand-file-name ename archive-tmpdir))
1089 (top (directory-file-name (file-name-as-directory archive-tmpdir)))
1090 (default-directory (file-name-as-directory top)))
1091 (unwind-protect
1092 (progn
1093 (make-directory (file-name-directory tmpfile) t)
380683ed
EZ
1094 ;; If the member is itself an archive, write it without
1095 ;; the dired-like listing we created.
1096 (if (eq major-mode 'archive-mode)
1097 (archive-write-file tmpfile)
1098 (write-region (point-min) (point-max) tmpfile nil 'nomessage))
1099 ;; basic-save-buffer needs last-coding-system-used to have
1100 ;; the value used to write the file, so save it before any
1101 ;; further processing clobbers it (we restore it in
1102 ;; archive-write-file-member, above).
1103 (setq archive-member-coding-system last-coding-system-used)
665211a3
KH
1104 (if (aref descr 3)
1105 ;; Set the file modes, but make sure we can read it.
1106 (set-file-modes tmpfile (logior ?\400 (aref descr 3))))
7e5ad777
KH
1107 (if enable-multibyte-characters
1108 (setq ename
1109 (encode-coding-string ename file-name-coding-system)))
665211a3
KH
1110 (let ((exitcode (apply 'call-process
1111 (car command)
1112 nil
1113 nil
1114 nil
1115 (append (cdr command) (list archive ename)))))
1116 (if (equal exitcode 0)
1117 nil
1118 (error "Updating was unsuccessful (%S)" exitcode))))
1119 (archive-delete-local tmpfile))))
1120
380683ed 1121(defun archive-write-file (&optional file)
665211a3 1122 (save-excursion
380683ed
EZ
1123 (let ((coding-system-for-write 'no-conversion))
1124 (write-region archive-proper-file-start (point-max)
1125 (or file buffer-file-name) nil t)
1126 (set-buffer-modified-p nil))
665211a3
KH
1127 t))
1128;; -------------------------------------------------------------------------
1129;; Section: Marking and unmarking.
1130
1131(defun archive-flag-deleted (p &optional type)
1132 "In archive mode, mark this member to be deleted from the archive.
1133With a prefix argument, mark that many files."
1134 (interactive "p")
1135 (or type (setq type ?D))
1136 (beginning-of-line)
1137 (let ((sign (if (>= p 0) +1 -1))
1138 (modified (buffer-modified-p))
1139 buffer-read-only)
1140 (while (not (zerop p))
1141 (if (archive-get-descr t)
1142 (progn
1143 (delete-char 1)
1144 (insert type)))
1145 (forward-line sign)
1146 (setq p (- p sign)))
1147 (set-buffer-modified-p modified))
1148 (archive-next-line 0))
1149
1150(defun archive-unflag (p)
1151 "In archive mode, un-mark this member if it is marked to be deleted.
1152With a prefix argument, un-mark that many files forward."
1153 (interactive "p")
1154 (archive-flag-deleted p ? ))
1155
1156(defun archive-unflag-backwards (p)
1157 "In archive mode, un-mark this member if it is marked to be deleted.
1158With a prefix argument, un-mark that many members backward."
1159 (interactive "p")
1160 (archive-flag-deleted (- p) ? ))
1161
1162(defun archive-unmark-all-files ()
1163 "Remove all marks."
1164 (interactive)
1165 (let ((modified (buffer-modified-p))
1166 buffer-read-only)
1167 (save-excursion
1168 (goto-char archive-file-list-start)
1169 (while (< (point) archive-file-list-end)
1170 (or (= (following-char) ? )
1171 (progn (delete-char 1) (insert ? )))
1172 (forward-line 1)))
1173 (set-buffer-modified-p modified)))
1174
1175(defun archive-mark (p)
1176 "In archive mode, mark this member for group operations.
1177With a prefix argument, mark that many members.
1178Use \\[archive-unmark-all-files] to remove all marks."
1179 (interactive "p")
1180 (archive-flag-deleted p ?*))
1181
1182(defun archive-get-marked (mark &optional default)
1183 (let (files)
1184 (save-excursion
1185 (goto-char archive-file-list-start)
1186 (while (< (point) archive-file-list-end)
1187 (if (= (following-char) mark)
1188 (setq files (cons (archive-get-descr) files)))
1189 (forward-line 1)))
1190 (or (nreverse files)
1191 (and default
1192 (list (archive-get-descr))))))
1193;; -------------------------------------------------------------------------
1194;; Section: Operate
1195
1196(defun archive-next-line (p)
1197 (interactive "p")
1198 (forward-line p)
1199 (or (eobp)
1200 (forward-char archive-file-name-indent)))
1201
1202(defun archive-previous-line (p)
1203 (interactive "p")
1204 (archive-next-line (- p)))
1205
1206(defun archive-chmod-entry (new-mode)
eeba65ed 1207 "Change the protection bits associated with all marked or this member.
665211a3
KH
1208The new protection bits can either be specified as an octal number or
1209as a relative change like \"g+rw\" as for chmod(2)"
1210 (interactive "sNew mode (octal or relative): ")
1211 (if archive-read-only (error "Archive is read-only"))
1212 (let ((func (archive-name "chmod-entry")))
1213 (if (fboundp func)
1214 (progn
1215 (funcall func new-mode (archive-get-marked ?* t))
1216 (archive-resummarize))
1217 (error "Setting mode bits is not supported for this archive type"))))
1218
1219(defun archive-chown-entry (new-uid)
1220 "Change the owner of all marked or this member."
1221 (interactive "nNew uid: ")
1222 (if archive-read-only (error "Archive is read-only"))
1223 (let ((func (archive-name "chown-entry")))
1224 (if (fboundp func)
1225 (progn
1226 (funcall func new-uid (archive-get-marked ?* t))
1227 (archive-resummarize))
1228 (error "Setting owner is not supported for this archive type"))))
1229
1230(defun archive-chgrp-entry (new-gid)
1231 "Change the group of all marked or this member."
1232 (interactive "nNew gid: ")
1233 (if archive-read-only (error "Archive is read-only"))
1234 (let ((func (archive-name "chgrp-entry")))
1235 (if (fboundp func)
1236 (progn
1237 (funcall func new-gid (archive-get-marked ?* t))
1238 (archive-resummarize))
1239 (error "Setting group is not supported for this archive type"))))
1240
1241(defun archive-expunge ()
1242 "Do the flagged deletions."
1243 (interactive)
1244 (let (files)
1245 (save-excursion
1246 (goto-char archive-file-list-start)
1247 (while (< (point) archive-file-list-end)
1248 (if (= (following-char) ?D)
1249 (setq files (cons (aref (archive-get-descr) 0) files)))
1250 (forward-line 1)))
1251 (setq files (nreverse files))
1252 (and files
1253 (or (not archive-read-only)
1254 (error "Archive is read-only"))
1255 (or (yes-or-no-p (format "Really delete %d member%s? "
1256 (length files)
1257 (if (null (cdr files)) "" "s")))
1258 (error "Operation aborted"))
1259 (let ((archive (archive-maybe-copy (buffer-file-name)))
1260 (expunger (archive-name "expunge")))
1261 (if (fboundp expunger)
1262 (funcall expunger archive files)
1263 (archive-*-expunge archive files (symbol-value expunger)))
1264 (archive-maybe-update nil)
1265 (if archive-remote
1266 (archive-resummarize)
1267 (revert-buffer))))))
1268
1269(defun archive-*-expunge (archive files command)
1270 (apply 'call-process
1271 (car command)
1272 nil
1273 nil
1274 nil
1275 (append (cdr command) (cons archive files))))
1276
1277(defun archive-rename-entry (newname)
1278 "Change the name associated with this entry in the tar file."
1279 (interactive "sNew name: ")
1280 (if archive-read-only (error "Archive is read-only"))
1281 (if (string= newname "")
1282 (error "Archive members may not be given empty names"))
1283 (let ((func (archive-name "rename-entry"))
1284 (descr (archive-get-descr)))
1285 (if (fboundp func)
1286 (progn
eb93d233 1287 (funcall func (buffer-file-name)
7e5ad777
KH
1288 (if enable-multibyte-characters
1289 (encode-coding-string newname file-name-coding-system)
1290 newname)
eb93d233 1291 descr)
665211a3
KH
1292 (archive-resummarize))
1293 (error "Renaming is not supported for this archive type"))))
1294
1295;; Revert the buffer and recompute the dired-like listing.
ad014140 1296(defun archive-mode-revert (&optional no-auto-save no-confirm)
665211a3
KH
1297 (let ((no (archive-get-lineno)))
1298 (setq archive-files nil)
380683ed
EZ
1299 (let ((revert-buffer-function nil)
1300 (coding-system-for-read 'no-conversion))
eb93d233 1301 (set-buffer-multibyte nil)
665211a3
KH
1302 (revert-buffer t t))
1303 (archive-mode)
1304 (goto-char archive-file-list-start)
1305 (archive-next-line no)))
1306
1307(defun archive-undo ()
1308 "Undo in an archive buffer.
1309This doesn't recover lost files, it just undoes changes in the buffer itself."
1310 (interactive)
1311 (let (buffer-read-only)
1312 (undo)))
1313;; -------------------------------------------------------------------------
1314;; Section: Arc Archives
1315
1316(defun archive-arc-summarize ()
1317 (let ((p 1)
1318 (totalsize 0)
1319 (maxlen 8)
1320 files
1321 visual)
1322 (while (and (< (+ p 29) (point-max))
1323 (= (char-after p) ?\C-z)
1324 (> (char-after (1+ p)) 0))
1325 (let* ((namefld (buffer-substring (+ p 2) (+ p 2 13)))
1326 (fnlen (or (string-match "\0" namefld) 13))
1327 (efnname (substring namefld 0 fnlen))
1328 (csize (archive-l-e (+ p 15) 4))
1329 (moddate (archive-l-e (+ p 19) 2))
1330 (modtime (archive-l-e (+ p 21) 2))
1331 (ucsize (archive-l-e (+ p 25) 4))
1332 (fiddle (string= efnname (upcase efnname)))
1333 (ifnname (if fiddle (downcase efnname) efnname))
1334 (text (format " %8d %-11s %-8s %s"
1335 ucsize
1336 (archive-dosdate moddate)
1337 (archive-dostime modtime)
1338 ifnname)))
1339 (setq maxlen (max maxlen fnlen)
1340 totalsize (+ totalsize ucsize)
1341 visual (cons (vector text
1342 (- (length text) (length ifnname))
1343 (length text))
1344 visual)
1345 files (cons (vector efnname ifnname fiddle nil (1- p))
1346 files)
1347 p (+ p 29 csize))))
1348 (goto-char (point-min))
1349 (let ((dash (concat "- -------- ----------- -------- "
1350 (make-string maxlen ?-)
1351 "\n")))
1352 (insert "M Length Date Time File\n"
1353 dash)
1354 (archive-summarize-files (nreverse visual))
1355 (insert dash
1356 (format " %8d %d file%s"
1357 totalsize
1358 (length files)
1359 (if (= 1 (length files)) "" "s"))
1360 "\n"))
1361 (apply 'vector (nreverse files))))
1362
1363(defun archive-arc-rename-entry (archive newname descr)
1364 (if (string-match "[:\\\\/]" newname)
1365 (error "File names in arc files may not contain a path"))
1366 (if (> (length newname) 12)
1367 (error "File names in arc files are limited to 12 characters"))
1368 (let ((name (concat newname (substring "\0\0\0\0\0\0\0\0\0\0\0\0\0"
1369 (length newname))))
1370 buffer-read-only)
1371 (save-restriction
1372 (save-excursion
1373 (widen)
eb93d233 1374 (set-buffer-multibyte nil)
665211a3
KH
1375 (goto-char (+ archive-proper-file-start (aref descr 4) 2))
1376 (delete-char 13)
1377 (insert name)))))
1378;; -------------------------------------------------------------------------
1379;; Section: Lzh Archives
1380
1381(defun archive-lzh-summarize ()
1382 (let ((p 1)
1383 (totalsize 0)
1384 (maxlen 8)
1385 files
1386 visual)
a56636ae
RS
1387 (while (progn (goto-char p)
1388 (looking-at "\\(.\\|\n\\)\\(.\\|\n\\)-l[hz][0-9ds]-"))
665211a3
KH
1389 (let* ((hsize (char-after p))
1390 (csize (archive-l-e (+ p 7) 4))
1391 (ucsize (archive-l-e (+ p 11) 4))
1392 (modtime (archive-l-e (+ p 15) 2))
1393 (moddate (archive-l-e (+ p 17) 2))
a56636ae 1394 (hdrlvl (char-after (+ p 20)))
665211a3 1395 (fnlen (char-after (+ p 21)))
eb93d233
EZ
1396 (efnname (let ((str (buffer-substring (+ p 22) (+ p 22 fnlen))))
1397 (if file-name-coding-system
1398 (decode-coding-string str file-name-coding-system)
1399 (string-as-multibyte str))))
665211a3
KH
1400 (fiddle (string= efnname (upcase efnname)))
1401 (ifnname (if fiddle (downcase efnname) efnname))
eb93d233 1402 (width (string-width ifnname))
665211a3
KH
1403 (p2 (+ p 22 fnlen))
1404 (creator (if (>= (- hsize fnlen) 24) (char-after (+ p2 2)) 0))
a56636ae
RS
1405 mode modestr uid gid text path prname
1406 )
1407 (if (= hdrlvl 0)
1408 (setq mode (if (= creator ?U) (archive-l-e (+ p2 8) 2) ?\666)
1409 uid (if (= creator ?U) (archive-l-e (+ p2 10) 2))
1410 gid (if (= creator ?U) (archive-l-e (+ p2 12) 2)))
1411 (if (= creator ?U)
1412 (let* ((p3 (+ p2 3))
1413 (hsize (archive-l-e p3 2))
1414 (etype (char-after (+ p3 2))))
1415 (while (not (= hsize 0))
1416 (cond
1417 ((= etype 2) (let ((i (+ p3 3)))
1418 (while (< i (+ p3 hsize))
1419 (setq path (concat path
1420 (if (= (char-after i)
1421 255)
1422 "/"
1423 (char-to-string
1424 (char-after i)))))
1425 (setq i (1+ i)))))
1426 ((= etype 80) (setq mode (archive-l-e (+ p3 3) 2)))
1427 ((= etype 81) (progn (setq uid (archive-l-e (+ p3 3) 2))
1428 (setq gid (archive-l-e (+ p3 5) 2))))
1429 )
1430 (setq p3 (+ p3 hsize))
1431 (setq hsize (archive-l-e p3 2))
1432 (setq etype (char-after (+ p3 2)))))))
1433 (setq prname (if path (concat path ifnname) ifnname))
1434 (setq modestr (if mode (archive-int-to-mode mode) "??????????"))
1435 (setq text (if archive-alternate-display
665211a3
KH
1436 (format " %8d %5S %5S %s"
1437 ucsize
1438 (or uid "?")
1439 (or gid "?")
1440 ifnname)
1441 (format " %10s %8d %-11s %-8s %s"
1442 modestr
1443 ucsize
1444 (archive-dosdate moddate)
1445 (archive-dostime modtime)
a56636ae 1446 ifnname)))
eb93d233 1447 (setq maxlen (max maxlen width)
665211a3
KH
1448 totalsize (+ totalsize ucsize)
1449 visual (cons (vector text
1450 (- (length text) (length ifnname))
1451 (length text))
1452 visual)
a56636ae 1453 files (cons (vector prname ifnname fiddle mode (1- p))
665211a3
KH
1454 files)
1455 p (+ p hsize 2 csize))))
1456 (goto-char (point-min))
eb93d233 1457 (set-buffer-multibyte default-enable-multibyte-characters)
665211a3
KH
1458 (let ((dash (concat (if archive-alternate-display
1459 "- -------- ----- ----- "
1460 "- ---------- -------- ----------- -------- ")
1461 (make-string maxlen ?-)
1462 "\n"))
1463 (header (if archive-alternate-display
1464 "M Length Uid Gid File\n"
1465 "M Filemode Length Date Time File\n"))
1466 (sumline (if archive-alternate-display
1467 " %8d %d file%s"
1468 " %8d %d file%s")))
1469 (insert header dash)
1470 (archive-summarize-files (nreverse visual))
1471 (insert dash
1472 (format sumline
1473 totalsize
1474 (length files)
1475 (if (= 1 (length files)) "" "s"))
1476 "\n"))
1477 (apply 'vector (nreverse files))))
1478
1479(defconst archive-lzh-alternate-display t)
1480
1481(defun archive-lzh-extract (archive name)
1482 (archive-extract-by-stdout archive name archive-lzh-extract))
1483
1484(defun archive-lzh-resum (p count)
1485 (let ((sum 0))
1486 (while (> count 0)
1487 (setq count (1- count)
1488 sum (+ sum (char-after p))
1489 p (1+ p)))
1490 (logand sum 255)))
1491
1492(defun archive-lzh-rename-entry (archive newname descr)
1493 (save-restriction
1494 (save-excursion
1495 (widen)
eb93d233 1496 (set-buffer-multibyte nil)
665211a3
KH
1497 (let* ((p (+ archive-proper-file-start (aref descr 4)))
1498 (oldhsize (char-after p))
1499 (oldfnlen (char-after (+ p 21)))
1500 (newfnlen (length newname))
1501 (newhsize (+ oldhsize newfnlen (- oldfnlen)))
1502 buffer-read-only)
1503 (if (> newhsize 255)
1504 (error "The file name is too long"))
1505 (goto-char (+ p 21))
1506 (delete-char (1+ oldfnlen))
1507 (insert newfnlen newname)
1508 (goto-char p)
1509 (delete-char 2)
1510 (insert newhsize (archive-lzh-resum p newhsize))))))
1511
1512(defun archive-lzh-ogm (newval files errtxt ofs)
1513 (save-restriction
1514 (save-excursion
1515 (widen)
eb93d233 1516 (set-buffer-multibyte nil)
665211a3
KH
1517 (while files
1518 (let* ((fil (car files))
1519 (p (+ archive-proper-file-start (aref fil 4)))
1520 (hsize (char-after p))
1521 (fnlen (char-after (+ p 21)))
1522 (p2 (+ p 22 fnlen))
1523 (creator (if (>= (- hsize fnlen) 24) (char-after (+ p2 2)) 0))
1524 buffer-read-only)
1525 (if (= creator ?U)
1526 (progn
1527 (or (numberp newval)
1528 (setq newval (funcall newval (archive-l-e (+ p2 ofs) 2))))
1529 (goto-char (+ p2 ofs))
1530 (delete-char 2)
1531 (insert (logand newval 255) (lsh newval -8))
1532 (goto-char (1+ p))
1533 (delete-char 1)
1534 (insert (archive-lzh-resum (1+ p) hsize)))
1535 (message "Member %s does not have %s field"
1536 (aref fil 1) errtxt)))
1537 (setq files (cdr files))))))
1538
1539(defun archive-lzh-chown-entry (newuid files)
1540 (archive-lzh-ogm newuid files "an uid" 10))
1541
1542(defun archive-lzh-chgrp-entry (newgid files)
1543 (archive-lzh-ogm newgid files "a gid" 12))
1544
1545(defun archive-lzh-chmod-entry (newmode files)
1546 (archive-lzh-ogm
1547 ;; This should work even though newmode will be dynamically accessed.
43f657ea 1548 (function (lambda (old) (archive-calc-mode old newmode t)))
665211a3
KH
1549 files "a unix-style mode" 8))
1550;; -------------------------------------------------------------------------
1551;; Section: Zip Archives
1552
1553(defun archive-zip-summarize ()
1554 (goto-char (- (point-max) (- 22 18)))
1555 (search-backward-regexp "[P]K\005\006")
1556 (let ((p (1+ (archive-l-e (+ (point) 16) 4)))
1557 (maxlen 8)
1558 (totalsize 0)
1559 files
1560 visual)
1561 (while (string= "PK\001\002" (buffer-substring p (+ p 4)))
1562 (let* ((creator (char-after (+ p 5)))
1563 (method (archive-l-e (+ p 10) 2))
1564 (modtime (archive-l-e (+ p 12) 2))
1565 (moddate (archive-l-e (+ p 14) 2))
1566 (ucsize (archive-l-e (+ p 24) 4))
1567 (fnlen (archive-l-e (+ p 28) 2))
1568 (exlen (archive-l-e (+ p 30) 2))
845720b9 1569 (fclen (archive-l-e (+ p 32) 2))
665211a3 1570 (lheader (archive-l-e (+ p 42) 4))
eb93d233
EZ
1571 (efnname (let ((str (buffer-substring (+ p 46) (+ p 46 fnlen))))
1572 (if file-name-coding-system
1573 (decode-coding-string str file-name-coding-system)
1574 (string-as-multibyte str))))
665211a3
KH
1575 (isdir (and (= ucsize 0)
1576 (string= (file-name-nondirectory efnname) "")))
1577 (mode (cond ((memq creator '(2 3)) ; Unix + VMS
1578 (archive-l-e (+ p 40) 2))
380683ed 1579 ((memq creator '(0 5 6 7 10 11 15)) ; Dos etc.
665211a3
KH
1580 (logior ?\444
1581 (if isdir (logior 16384 ?\111) 0)
1582 (if (zerop
1583 (logand 1 (char-after (+ p 38))))
1584 ?\222 0)))
1585 (t nil)))
1586 (modestr (if mode (archive-int-to-mode mode) "??????????"))
1587 (fiddle (and archive-zip-case-fiddle
380683ed
EZ
1588 (not (not (memq creator '(0 2 4 5 9))))
1589 (string= (upcase efnname) efnname)))
665211a3 1590 (ifnname (if fiddle (downcase efnname) efnname))
eb93d233 1591 (width (string-width ifnname))
665211a3
KH
1592 (text (format " %10s %8d %-11s %-8s %s"
1593 modestr
1594 ucsize
1595 (archive-dosdate moddate)
1596 (archive-dostime modtime)
1597 ifnname)))
eb93d233 1598 (setq maxlen (max maxlen width)
665211a3
KH
1599 totalsize (+ totalsize ucsize)
1600 visual (cons (vector text
1601 (- (length text) (length ifnname))
1602 (length text))
1603 visual)
1604 files (cons (if isdir
1605 nil
1606 (vector efnname ifnname fiddle mode
1607 (list (1- p) lheader)))
1608 files)
845720b9 1609 p (+ p 46 fnlen exlen fclen))))
665211a3
KH
1610 (goto-char (point-min))
1611 (let ((dash (concat "- ---------- -------- ----------- -------- "
1612 (make-string maxlen ?-)
1613 "\n")))
1614 (insert "M Filemode Length Date Time File\n"
1615 dash)
1616 (archive-summarize-files (nreverse visual))
1617 (insert dash
1618 (format " %8d %d file%s"
1619 totalsize
1620 (length files)
1621 (if (= 1 (length files)) "" "s"))
1622 "\n"))
1623 (apply 'vector (nreverse files))))
1624
1625(defun archive-zip-extract (archive name)
1626 (if archive-zip-use-pkzip
1627 (archive-*-extract archive name archive-zip-extract)
1628 (archive-extract-by-stdout archive name archive-zip-extract)))
1629
1630(defun archive-zip-write-file-member (archive descr)
1631 (archive-*-write-file-member
1632 archive
1633 descr
1634 (if (aref descr 2) archive-zip-update-case archive-zip-update)))
1635
1636(defun archive-zip-chmod-entry (newmode files)
1637 (save-restriction
1638 (save-excursion
1639 (widen)
eb93d233 1640 (set-buffer-multibyte nil)
665211a3
KH
1641 (while files
1642 (let* ((fil (car files))
1643 (p (+ archive-proper-file-start (car (aref fil 4))))
1644 (creator (char-after (+ p 5)))
1645 (oldmode (aref fil 3))
1646 (newval (archive-calc-mode oldmode newmode t))
1647 buffer-read-only)
1648 (cond ((memq creator '(2 3)) ; Unix + VMS
1649 (goto-char (+ p 40))
1650 (delete-char 2)
1651 (insert (logand newval 255) (lsh newval -8)))
380683ed 1652 ((memq creator '(0 5 6 7 10 11 15)) ; Dos etc.
665211a3
KH
1653 (goto-char (+ p 38))
1654 (insert (logior (logand (char-after (point)) 254)
1655 (logand (logxor 1 (lsh newval -7)) 1)))
1656 (delete-char 1))
1657 (t (message "Don't know how to change mode for this member"))))
1658 (setq files (cdr files))))))
1659;; -------------------------------------------------------------------------
1660;; Section: Zoo Archives
1661
1662(defun archive-zoo-summarize ()
1663 (let ((p (1+ (archive-l-e 25 4)))
1664 (maxlen 8)
1665 (totalsize 0)
1666 files
1667 visual)
1668 (while (and (string= "\334\247\304\375" (buffer-substring p (+ p 4)))
1669 (> (archive-l-e (+ p 6) 4) 0))
1670 (let* ((next (1+ (archive-l-e (+ p 6) 4)))
1671 (moddate (archive-l-e (+ p 14) 2))
1672 (modtime (archive-l-e (+ p 16) 2))
1673 (ucsize (archive-l-e (+ p 20) 4))
1674 (namefld (buffer-substring (+ p 38) (+ p 38 13)))
83c4abcb
RS
1675 (dirtype (char-after (+ p 4)))
1676 (lfnlen (if (= dirtype 2) (char-after (+ p 56)) 0))
1677 (ldirlen (if (= dirtype 2) (char-after (+ p 57)) 0))
9913653a 1678 (fnlen (or (string-match "\0" namefld) 13))
eb93d233
EZ
1679 (efnname (let ((str
1680 (concat
1681 (if (> ldirlen 0)
1682 (concat (buffer-substring
1683 (+ p 58 lfnlen)
1684 (+ p 58 lfnlen ldirlen -1))
1685 "/")
1686 "")
1687 (if (> lfnlen 0)
1688 (buffer-substring (+ p 58)
1689 (+ p 58 lfnlen -1))
1690 (substring namefld 0 fnlen)))))
1691 (if file-name-coding-system
1692 (decode-coding-string str file-name-coding-system)
1693 (string-as-multibyte str))))
83c4abcb 1694 (fiddle (and (= lfnlen 0) (string= efnname (upcase efnname))))
665211a3 1695 (ifnname (if fiddle (downcase efnname) efnname))
eb93d233 1696 (width (string-width ifnname))
665211a3
KH
1697 (text (format " %8d %-11s %-8s %s"
1698 ucsize
1699 (archive-dosdate moddate)
1700 (archive-dostime modtime)
1701 ifnname)))
eb93d233 1702 (setq maxlen (max maxlen (length width))
665211a3
KH
1703 totalsize (+ totalsize ucsize)
1704 visual (cons (vector text
1705 (- (length text) (length ifnname))
1706 (length text))
1707 visual)
1708 files (cons (vector efnname ifnname fiddle nil (1- p))
1709 files)
1710 p next)))
1711 (goto-char (point-min))
1712 (let ((dash (concat "- -------- ----------- -------- "
1713 (make-string maxlen ?-)
1714 "\n")))
1715 (insert "M Length Date Time File\n"
1716 dash)
1717 (archive-summarize-files (nreverse visual))
1718 (insert dash
1719 (format " %8d %d file%s"
1720 totalsize
1721 (length files)
1722 (if (= 1 (length files)) "" "s"))
1723 "\n"))
1724 (apply 'vector (nreverse files))))
1725
1726(defun archive-zoo-extract (archive name)
1727 (archive-extract-by-stdout archive name archive-zoo-extract))
1728;; -------------------------------------------------------------------------
0d0587b9
RS
1729;; This line was a mistake; it is kept now for compatibility.
1730;; rms 15 Oct 98
665211a3
KH
1731(provide 'archive-mode)
1732
0d0587b9
RS
1733(provide 'arc-mode)
1734
665211a3 1735;; arc-mode.el ends here.