Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
[bpt/emacs.git] / lisp / jka-compr.el
CommitLineData
be010748
RS
1;;; jka-compr.el --- reading/writing/loading compressed files
2
c90f2757 3;; Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
114f9c96 4;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
acd622cc
RS
5
6;; Author: jka@ece.cmu.edu (Jay K. Adams)
4228277d 7;; Maintainer: FSF
acd622cc
RS
8;; Keywords: data
9
f4454a14
RS
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
f4454a14 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
f4454a14
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
f4454a14 24
55535639 25;;; Commentary:
acd622cc 26
b578f267
EN
27;; This package implements low-level support for reading, writing,
28;; and loading compressed files. It hooks into the low-level file
29;; I/O functions (including write-region and insert-file-contents) so
30;; that they automatically compress or uncompress a file if the file
31;; appears to need it (based on the extension of the file name).
32;; Packages like Rmail, VM, GNUS, and Info should be able to work
33;; with compressed files without modification.
34
35
36;; INSTRUCTIONS:
37;;
7391213d
MB
38;; To use jka-compr, invoke the command `auto-compression-mode' (which
39;; see), or customize the variable of the same name. Its operation
40;; should be transparent to the user (except for messages appearing when
41;; a file is being compressed or uncompressed).
b578f267
EN
42;;
43;; The variable, jka-compr-compression-info-list can be used to
44;; customize jka-compr to work with other compression programs.
45;; The default value of this variable allows jka-compr to work with
46;; Unix compress and gzip.
47;;
b578f267 48;; If you don't want messages about compressing and decompressing
04b5376f
JB
49;; to show up in the echo area, you can set the compress-msg and
50;; decompress-msg fields of the jka-compr-compression-info-list to
b578f267
EN
51;; nil.
52
53
54;; APPLICATION NOTES:
55;;
56;; crypt++
5f320490 57;; jka-compr can coexist with crypt++ if you take all the decompression
b578f267
EN
58;; entries out of the crypt-encoding-list. Clearly problems will arise if
59;; you have two programs trying to compress/decompress files. jka-compr
60;; will not "work with" crypt++ in the following sense: you won't be able to
61;; decode encrypted compressed files--that is, files that have been
62;; compressed then encrypted (in that order). Theoretically, crypt++ and
63;; jka-compr could properly handle a file that has been encrypted then
64;; compressed, but there is little point in trying to compress an encrypted
65;; file.
66;;
67
68
69;; ACKNOWLEDGMENTS
f1180544 70;;
b578f267 71;; jka-compr is a V19 adaptation of jka-compr for V18 of Emacs. Many people
f1180544 72;; have made helpful suggestions, reported bugs, and even fixed bugs in
b578f267
EN
73;; jka-compr. I recall the following people as being particularly helpful.
74;;
75;; Jean-loup Gailly
76;; David Hughes
77;; Richard Pieri
78;; Daniel Quinlan
79;; Chris P. Ross
80;; Rick Sladkey
81;;
82;; Andy Norman's ange-ftp was the inspiration for the original jka-compr for
83;; Version 18 of Emacs.
84;;
85;; After I had made progress on the original jka-compr for V18, I learned of a
86;; package written by Kazushi Jam Marukawa, called jam-zcat, that did exactly
87;; what I was trying to do. I looked over the jam-zcat source code and
88;; probably got some ideas from it.
89;;
acd622cc
RS
90
91;;; Code:
92
f6cb7e0a
SM
93(require 'jka-cmpr-hook)
94
bbf5eb28 95(defcustom jka-compr-shell "sh"
9201cc28 96 "Shell to be used for calling compression programs.
04b5376f 97NOTE: Not used in MS-DOS and Windows systems."
bbf5eb28
RS
98 :type 'string
99 :group 'jka-compr)
acd622cc 100
f1180544 101(defvar jka-compr-use-shell
eb915452 102 (not (memq system-type '(ms-dos windows-nt))))
acd622cc 103
e073a356 104(defvar jka-compr-really-do-compress nil
dd83d95a
RS
105 "Non-nil in a buffer whose visited file was uncompressed on visiting it.
106This means compress the data on writing the file, even if the
107data appears to be compressed already.")
108(make-variable-buffer-local 'jka-compr-really-do-compress)
e073a356 109(put 'jka-compr-really-do-compress 'permanent-local t)
555235e6 110\f
acd622cc
RS
111
112(put 'compression-error 'error-conditions '(compression-error file-error error))
113
114
30c78e11 115(defvar jka-compr-acceptable-retval-list '(0 2 141))
acd622cc
RS
116
117
118(defun jka-compr-error (prog args infile message &optional errfile)
119
f6cb7e0a 120 (let ((errbuf (get-buffer-create " *jka-compr-error*")))
75e9c107
RS
121 (with-current-buffer errbuf
122 (widen) (erase-buffer)
123 (insert (format "Error while executing \"%s %s < %s\"\n\n"
124 prog
125 (mapconcat 'identity args " ")
126 infile))
127
128 (and errfile
129 (insert-file-contents errfile)))
acd622cc
RS
130 (display-buffer errbuf))
131
75e9c107
RS
132 (signal 'compression-error
133 (list "Opening input file" (format "error %s" message) infile)))
f1180544
JB
134
135
242d2673
RS
136(defcustom jka-compr-dd-program "/bin/dd"
137 "How to invoke `dd'."
138 :type 'string
139 :group 'jka-compr)
acd622cc
RS
140
141
dfe05fac 142(defvar jka-compr-dd-blocksize 256)
acd622cc
RS
143
144
145(defun jka-compr-partial-uncompress (prog message args infile beg len)
146 "Call program PROG with ARGS args taking input from INFILE.
147Fourth and fifth args, BEG and LEN, specify which part of the output
ee139ed3 148to keep: LEN chars starting BEG chars from the beginning."
242d2673
RS
149 (let ((start (point))
150 (prefix beg))
151 (if (and jka-compr-use-shell jka-compr-dd-program)
152 ;; Put the uncompression output through dd
153 ;; to discard the part we don't want.
154 (let ((skip (/ beg jka-compr-dd-blocksize))
155 (err-file (jka-compr-make-temp-name))
dc2cef77
CY
156 ;; call-process barfs if default-directory is inaccessible.
157 (default-directory
158 (if (and default-directory
159 (file-accessible-directory-p default-directory))
160 default-directory
161 (file-name-directory infile)))
242d2673
RS
162 count)
163 ;; Update PREFIX based on the text that we won't read in.
164 (setq prefix (- beg (* skip jka-compr-dd-blocksize))
165 count (and len (1+ (/ (+ len prefix) jka-compr-dd-blocksize))))
166 (unwind-protect
167 (or (memq (call-process
168 jka-compr-shell infile t nil "-c"
169 (format
152e2693 170 "%s %s 2> %s | %s bs=%d skip=%d %s 2> %s"
242d2673
RS
171 prog
172 (mapconcat 'identity args " ")
173 err-file
174 jka-compr-dd-program
175 jka-compr-dd-blocksize
176 skip
177 ;; dd seems to be unreliable about
178 ;; providing the last block. So, always
179 ;; read one more than you think you need.
152e2693
EZ
180 (if count (format "count=%d" (1+ count)) "")
181 null-device))
242d2673
RS
182 jka-compr-acceptable-retval-list)
183 (jka-compr-error prog args infile message err-file))
f1a5d776 184 (delete-file err-file)))
84716442 185
242d2673
RS
186 ;; Run the uncompression program directly.
187 ;; We get the whole file and must delete what we don't want.
188 (jka-compr-call-process prog message infile t nil args))
acd622cc 189
ee139ed3 190 ;; Delete the stuff after what we want, if there is any.
acd622cc 191 (and
dfe05fac 192 len
ee139ed3 193 (< (+ start prefix len) (point))
dfe05fac 194 (delete-region (+ start prefix len) (point)))
acd622cc 195
ee139ed3 196 ;; Delete the stuff before what we want.
acd622cc
RS
197 (delete-region start (+ start prefix))))
198
199
200(defun jka-compr-call-process (prog message infile output temp args)
dc2cef77
CY
201 ;; call-process barfs if default-directory is inaccessible.
202 (let ((default-directory
203 (if (and default-directory
204 (file-accessible-directory-p default-directory))
205 default-directory
206 (file-name-directory infile))))
207 (if jka-compr-use-shell
208 (let ((err-file (jka-compr-make-temp-name))
209 (coding-system-for-read (or coding-system-for-read 'undecided))
210 (coding-system-for-write 'no-conversion))
211 (unwind-protect
212 (or (memq
213 (call-process jka-compr-shell infile
214 (if (stringp output) nil output)
215 nil
216 "-c"
217 (format "%s %s 2> %s %s"
218 prog
219 (mapconcat 'identity args " ")
220 err-file
221 (if (stringp output)
222 (concat "> " output)
223 "")))
224 jka-compr-acceptable-retval-list)
225 (jka-compr-error prog args infile message err-file))
f1a5d776 226 (delete-file err-file)))
dc2cef77
CY
227 (or (eq 0
228 (apply 'call-process
229 prog infile (if (stringp output) temp output)
230 nil args))
231 (jka-compr-error prog args infile message))
232 (and (stringp output)
233 (with-current-buffer temp
234 (write-region (point-min) (point-max) output)
235 (erase-buffer))))))
acd622cc
RS
236
237
f6cb7e0a
SM
238;; Support for temp files. Much of this was inspired if not lifted
239;; from ange-ftp.
acd622cc 240
bbf5eb28 241(defcustom jka-compr-temp-name-template
11757e2f 242 (expand-file-name "jka-com" temporary-file-directory)
362b539a 243 "Prefix added to all temp files created by jka-compr.
bbf5eb28
RS
244There should be no more than seven characters after the final `/'."
245 :type 'string
246 :group 'jka-compr)
acd622cc 247
acd622cc
RS
248(defun jka-compr-make-temp-name (&optional local-copy)
249 "This routine will return the name of a new file."
767d12f2
SM
250 (make-temp-file jka-compr-temp-name-template))
251
acd622cc 252(defun jka-compr-write-region (start end file &optional append visit)
acd622cc
RS
253 (let* ((filename (expand-file-name file))
254 (visit-file (if (stringp visit) (expand-file-name visit) filename))
e073a356
RS
255 (info (jka-compr-get-compression-info visit-file))
256 (magic (and info (jka-compr-info-file-magic-bytes info))))
257
258 ;; If we uncompressed this file when visiting it,
259 ;; then recompress it when writing it
260 ;; even if the contents look compressed already.
261 (if (and jka-compr-really-do-compress
ab1d3835
SM
262 (or (null start)
263 (= (- end start) (buffer-size))))
e073a356
RS
264 (setq magic nil))
265
266 (if (and info
267 ;; If the contents to be written out
268 ;; are properly compressed already,
269 ;; don't try to compress them over again.
270 (not (and magic
271 (equal (if (stringp start)
272 (substring start 0 (min (length start)
273 (length magic)))
5e84e8f9
SM
274 (let* ((from (or start (point-min)))
275 (to (min (or end (point-max))
276 (+ from (length magic)))))
ab1d3835 277 (buffer-substring from to)))
e073a356
RS
278 magic))))
279 (let ((can-append (jka-compr-info-can-append info))
280 (compress-program (jka-compr-info-compress-program info))
281 (compress-message (jka-compr-info-compress-message info))
e073a356 282 (compress-args (jka-compr-info-compress-args info))
e073a356
RS
283 (base-name (file-name-nondirectory visit-file))
284 temp-file temp-buffer
285 ;; we need to leave `last-coding-system-used' set to its
286 ;; value after calling write-region the first time, so
287 ;; that `basic-save-buffer' sees the right value.
288 (coding-system-used last-coding-system-used))
289
cc8b577e
JL
290 (or compress-program
291 (error "No compression program defined"))
292
e073a356
RS
293 (setq temp-buffer (get-buffer-create " *jka-compr-wr-temp*"))
294 (with-current-buffer temp-buffer
295 (widen) (erase-buffer))
296
297 (if (and append
298 (not can-append)
299 (file-exists-p filename))
300
301 (let* ((local-copy (file-local-copy filename))
302 (local-file (or local-copy filename)))
303
304 (setq temp-file local-file))
305
306 (setq temp-file (jka-compr-make-temp-name)))
307
f1180544 308 (and
e073a356
RS
309 compress-message
310 (message "%s %s..." compress-message base-name))
311
312 (jka-compr-run-real-handler 'write-region
313 (list start end temp-file t 'dont))
314 ;; save value used by the real write-region
315 (setq coding-system-used last-coding-system-used)
316
317 ;; Here we must read the output of compress program as is
318 ;; without any code conversion.
319 (let ((coding-system-for-read 'no-conversion))
320 (jka-compr-call-process compress-program
321 (concat compress-message
322 " " base-name)
323 temp-file
324 temp-buffer
325 nil
326 compress-args))
327
328 (with-current-buffer temp-buffer
329 (let ((coding-system-for-write 'no-conversion))
330 (if (memq system-type '(ms-dos windows-nt))
331 (setq buffer-file-type t) )
332 (jka-compr-run-real-handler 'write-region
333 (list (point-min) (point-max)
334 filename
335 (and append can-append) 'dont))
336 (erase-buffer)) )
337
f1a5d776 338 (delete-file temp-file)
acd622cc 339
e073a356
RS
340 (and
341 compress-message
342 (message "%s %s...done" compress-message base-name))
343
344 (cond
345 ((eq visit t)
346 (setq buffer-file-name filename)
347 (setq jka-compr-really-do-compress t)
348 (set-visited-file-modtime))
349 ((stringp visit)
350 (setq buffer-file-name visit)
351 (let ((buffer-file-name filename))
352 (set-visited-file-modtime))))
353
354 (and (or (eq visit t)
355 (eq visit nil)
356 (stringp visit))
357 (message "Wrote %s" visit-file))
358
359 ;; ensure `last-coding-system-used' has an appropriate value
360 (setq last-coding-system-used coding-system-used)
361
362 nil)
f1180544 363
e073a356
RS
364 (jka-compr-run-real-handler 'write-region
365 (list start end filename append visit)))))
acd622cc
RS
366
367
54b2aa5c 368(defun jka-compr-insert-file-contents (file &optional visit beg end replace)
acd622cc
RS
369 (barf-if-buffer-read-only)
370
371 (and (or beg end)
372 visit
373 (error "Attempt to visit less than an entire file"))
374
375 (let* ((filename (expand-file-name file))
376 (info (jka-compr-get-compression-info filename)))
377
82fb0b42
SM
378 (if (not info)
379
380 (jka-compr-run-real-handler 'insert-file-contents
381 (list file visit beg end replace))
382
383 (let ((uncompress-message (jka-compr-info-uncompress-message info))
384 (uncompress-program (jka-compr-info-uncompress-program info))
385 (uncompress-args (jka-compr-info-uncompress-args info))
386 (base-name (file-name-nondirectory filename))
387 (notfound nil)
388 (local-copy
389 (jka-compr-run-real-handler 'file-local-copy (list filename)))
390 local-file
391 size start)
392
393 (setq local-file (or local-copy filename))
394
395 (and
396 visit
397 (setq buffer-file-name filename))
398
399 (unwind-protect ; to make sure local-copy gets deleted
400
401 (progn
402
403 (and
404 uncompress-message
405 (message "%s %s..." uncompress-message base-name))
406
407 (condition-case error-code
408
409 (let ((coding-system-for-read 'no-conversion))
410 (if replace
411 (goto-char (point-min)))
412 (setq start (point))
413 (if (or beg end)
414 (jka-compr-partial-uncompress uncompress-program
415 (concat uncompress-message
416 " " base-name)
417 uncompress-args
418 local-file
419 (or beg 0)
420 (if (and beg end)
421 (- end beg)
422 end))
423 ;; If visiting, bind off buffer-file-name so that
424 ;; file-locking will not ask whether we should
425 ;; really edit the buffer.
426 (let ((buffer-file-name
427 (if visit nil buffer-file-name)))
428 (jka-compr-call-process uncompress-program
429 (concat uncompress-message
430 " " base-name)
431 local-file
432 t
433 nil
434 uncompress-args)))
435 (setq size (- (point) start))
436 (if replace
437 (delete-region (point) (point-max)))
438 (goto-char start))
439 (error
440 ;; If the file we wanted to uncompress does not exist,
441 ;; handle that according to VISIT as `insert-file-contents'
442 ;; would, maybe signaling the same error it normally would.
443 (if (and (eq (car error-code) 'file-error)
444 (eq (nth 3 error-code) local-file))
445 (if visit
446 (setq notfound error-code)
447 (signal 'file-error
448 (cons "Opening input file"
449 (nthcdr 2 error-code))))
450 ;; If the uncompression program can't be found,
451 ;; signal that as a non-file error
452 ;; so that find-file-noselect-1 won't handle it.
453 (if (and (eq (car error-code) 'file-error)
454 (equal (cadr error-code) "Searching for program"))
455 (error "Uncompression program `%s' not found"
456 (nth 3 error-code)))
457 (signal (car error-code) (cdr error-code))))))
458
459 (and
460 local-copy
461 (file-exists-p local-copy)
462 (delete-file local-copy)))
463
464 (unless notfound
465 (decode-coding-inserted-region
466 (point) (+ (point) size)
467 (jka-compr-byte-compiler-base-file-name file)
468 visit beg end replace))
469
470 (and
471 visit
472 (progn
473 (unlock-buffer)
474 (setq buffer-file-name filename)
475 (setq jka-compr-really-do-compress t)
476 (set-visited-file-modtime)))
477
478 (and
479 uncompress-message
480 (message "%s %s...done" uncompress-message base-name))
481
482 (and
483 visit
484 notfound
485 (signal 'file-error
486 (cons "Opening input file" (nth 2 notfound))))
487
488 ;; This is done in insert-file-contents after we return.
489 ;; That is a little weird, but better to go along with it now
490 ;; than to change it now.
491
492 ;; ;; Run the functions that insert-file-contents would.
493 ;; (let ((p after-insert-file-functions)
494 ;; (insval size))
495 ;; (while p
496 ;; (setq insval (funcall (car p) size))
497 ;; (if insval
498 ;; (progn
499 ;; (or (integerp insval)
500 ;; (signal 'wrong-type-argument
501 ;; (list 'integerp insval)))
502 ;; (setq size insval)))
503 ;; (setq p (cdr p))))
504
505 (or (jka-compr-info-compress-program info)
506 (message "You can't save this buffer because compression program is not defined"))
507
508 (list filename size)))))
acd622cc
RS
509
510
511(defun jka-compr-file-local-copy (file)
acd622cc
RS
512 (let* ((filename (expand-file-name file))
513 (info (jka-compr-get-compression-info filename)))
514
515 (if info
516
517 (let ((uncompress-message (jka-compr-info-uncompress-message info))
518 (uncompress-program (jka-compr-info-uncompress-program info))
519 (uncompress-args (jka-compr-info-uncompress-args info))
520 (base-name (file-name-nondirectory filename))
8fb1a583
RS
521 (local-copy
522 (jka-compr-run-real-handler 'file-local-copy (list filename)))
acd622cc 523 (temp-file (jka-compr-make-temp-name t))
30c78e11 524 (temp-buffer (get-buffer-create " *jka-compr-flc-temp*"))
acd622cc
RS
525 local-file)
526
527 (setq local-file (or local-copy filename))
528
529 (unwind-protect
530
75e9c107 531 (with-current-buffer temp-buffer
f1180544 532
acd622cc
RS
533 (and
534 uncompress-message
535 (message "%s %s..." uncompress-message base-name))
f1180544 536
baefb016
KH
537 ;; Here we must read the output of uncompress program
538 ;; and write it to TEMP-FILE without any code
539 ;; conversion. An appropriate code conversion (if
540 ;; necessary) is done by the later I/O operation
541 ;; (e.g. load).
542 (let ((coding-system-for-read 'no-conversion)
543 (coding-system-for-write 'no-conversion))
544
545 (jka-compr-call-process uncompress-program
546 (concat uncompress-message
547 " " base-name)
548 local-file
549 t
550 nil
551 uncompress-args)
552
553 (and
554 uncompress-message
555 (message "%s %s...done" uncompress-message base-name))
556
557 (write-region
558 (point-min) (point-max) temp-file nil 'dont)))
acd622cc
RS
559
560 (and
561 local-copy
562 (file-exists-p local-copy)
563 (delete-file local-copy))
564
acd622cc
RS
565 (kill-buffer temp-buffer))
566
567 temp-file)
f1180544 568
8fb1a583 569 (jka-compr-run-real-handler 'file-local-copy (list filename)))))
acd622cc
RS
570
571
f6cb7e0a 572;; Support for loading compressed files.
acd622cc
RS
573(defun jka-compr-load (file &optional noerror nomessage nosuffix)
574 "Documented as original."
575
576 (let* ((local-copy (jka-compr-file-local-copy file))
577 (load-file (or local-copy file)))
578
579 (unwind-protect
580
8fb1a583
RS
581 (let (inhibit-file-name-operation
582 inhibit-file-name-handlers)
acd622cc
RS
583 (or nomessage
584 (message "Loading %s..." file))
585
9b37d8a9
RS
586 (let ((load-force-doc-strings t))
587 (load load-file noerror t t))
acd622cc 588 (or nomessage
e645e77b
DL
589 (message "Loading %s...done." file))
590 ;; Fix up the load history to point at the right library.
6a801864
EZ
591 (let ((l (or (assoc load-file load-history)
592 ;; On MS-Windows, if load-file is in
593 ;; temporary-file-directory, it will look like
594 ;; "c:/DOCUME~1/USER/LOCALS~1/foo", whereas
595 ;; readevalloop will record its truename in
596 ;; load-history. Therefore try truename if the
597 ;; original name is not in load-history.
598 (assoc (file-truename load-file) load-history))))
e645e77b
DL
599 ;; Remove .gz and .elc?.
600 (while (file-name-extension file)
601 (setq file (file-name-sans-extension file)))
602 (setcar l file)))
acd622cc 603
53967e09 604 (delete-file local-copy))
acd622cc
RS
605
606 t))
3068998d
RS
607
608(defun jka-compr-byte-compiler-base-file-name (file)
609 (let ((info (jka-compr-get-compression-info file)))
610 (if (and info (jka-compr-info-strip-extension info))
611 (save-match-data
612 (substring file 0 (string-match (jka-compr-info-regexp info) file)))
613 file)))
8fb1a583
RS
614\f
615(put 'write-region 'jka-compr 'jka-compr-write-region)
616(put 'insert-file-contents 'jka-compr 'jka-compr-insert-file-contents)
617(put 'file-local-copy 'jka-compr 'jka-compr-file-local-copy)
618(put 'load 'jka-compr 'jka-compr-load)
3068998d
RS
619(put 'byte-compiler-base-file-name 'jka-compr
620 'jka-compr-byte-compiler-base-file-name)
acd622cc 621
0e2846fb 622;;;###autoload
9fdf055b
KH
623(defvar jka-compr-inhibit nil
624 "Non-nil means inhibit automatic uncompression temporarily.
625Lisp programs can bind this to t to do that.
626It is not recommended to set this variable permanently to anything but nil.")
627
0e2846fb 628;;;###autoload
acd622cc 629(defun jka-compr-handler (operation &rest args)
8fb1a583
RS
630 (save-match-data
631 (let ((jka-op (get operation 'jka-compr)))
9fdf055b 632 (if (and jka-op (not jka-compr-inhibit))
8fb1a583
RS
633 (apply jka-op args)
634 (jka-compr-run-real-handler operation args)))))
acd622cc 635
99bee6a4
RS
636;; If we are given an operation that we don't handle,
637;; call the Emacs primitive for that operation,
638;; and manipulate the inhibit variables
639;; to prevent the primitive from calling our handler again.
640(defun jka-compr-run-real-handler (operation args)
641 (let ((inhibit-file-name-handlers
642 (cons 'jka-compr-handler
643 (and (eq inhibit-file-name-operation operation)
644 inhibit-file-name-handlers)))
645 (inhibit-file-name-operation operation))
646 (apply operation args)))
647
233c955d 648;;;###autoload
acd622cc
RS
649(defun jka-compr-uninstall ()
650 "Uninstall jka-compr.
99bee6a4 651This removes the entries in `file-name-handler-alist' and `auto-mode-alist'
919a07bb
RS
652and `inhibit-first-line-modes-suffixes' that were added
653by `jka-compr-installed'."
654 ;; Delete from inhibit-first-line-modes-suffixes
655 ;; what jka-compr-install added.
0c53638a 656 (mapc
919a07bb
RS
657 (function (lambda (x)
658 (and (jka-compr-info-strip-extension x)
659 (setq inhibit-first-line-modes-suffixes
660 (delete (jka-compr-info-regexp x)
661 inhibit-first-line-modes-suffixes)))))
0c53638a 662 jka-compr-compression-info-list--internal)
acd622cc
RS
663
664 (let* ((fnha (cons nil file-name-handler-alist))
665 (last fnha))
666
667 (while (cdr last)
668 (if (eq (cdr (car (cdr last))) 'jka-compr-handler)
669 (setcdr last (cdr (cdr last)))
670 (setq last (cdr last))))
671
672 (setq file-name-handler-alist (cdr fnha)))
673
674 (let* ((ama (cons nil auto-mode-alist))
675 (last ama)
676 entry)
677
678 (while (cdr last)
679 (setq entry (car (cdr last)))
0c53638a 680 (if (or (member entry jka-compr-mode-alist-additions--internal)
74b2c737
RS
681 (and (consp (cdr entry))
682 (eq (nth 2 entry) 'jka-compr)))
acd622cc
RS
683 (setcdr last (cdr (cdr last)))
684 (setq last (cdr last))))
f1180544 685
4eec33ae
RS
686 (setq auto-mode-alist (cdr ama)))
687
f6cb7e0a
SM
688 (while jka-compr-added-to-file-coding-system-alist
689 (setq file-coding-system-alist
690 (delq (car (member (pop jka-compr-added-to-file-coding-system-alist)
691 file-coding-system-alist))
692 file-coding-system-alist)))
aab8a6e3
SM
693
694 ;; Remove the suffixes that were added by jka-compr.
0c53638a
LT
695 (dolist (suff jka-compr-load-suffixes--internal)
696 (setq load-file-rep-suffixes (delete suff load-file-rep-suffixes)))
697
698 (setq jka-compr-compression-info-list--internal nil
699 jka-compr-mode-alist-additions--internal nil
700 jka-compr-load-suffixes--internal nil))
acd622cc 701
acd622cc
RS
702(provide 'jka-compr)
703
f6cb7e0a 704;; arch-tag: 3f15b630-e9a7-46c4-a22a-94afdde86ebc
55535639 705;;; jka-compr.el ends here