Mercurial > emacs
annotate lisp/uncompress.el @ 813:f3706268745a
*** empty log message ***
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Fri, 17 Jul 1992 20:09:54 +0000 |
parents | 4f28bd14272c |
children | 2cdce064065f |
rev | line source |
---|---|
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
1 ;;; uncompress.el --- auto-decompression hook for visiting .Z files |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
2 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
3 ;; Maintainer: FSF |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
4 ;; Last-Modified: 30 May 1988 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
5 |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
6 ;; Copyright (C) 1992 Free Software Foundation, Inc. |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
7 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
9 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
13 ;; any later version. |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
14 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
15 ;; GNU Emacs is distributed in the hope that it will be useful, |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
18 ;; GNU General Public License for more details. |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
19 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
23 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
24 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
25 |
21 | 26 ;; When we are about to make a backup file, |
27 ;; uncompress the file we visited | |
28 ;; so that making the backup can work properly. | |
29 ;; This is used as a write-file-hook. | |
30 | |
31 (defun uncompress-backup-file () | |
32 (and buffer-file-name make-backup-files (not buffer-backed-up) | |
33 (not (file-exists-p buffer-file-name)) | |
34 (call-process "uncompress" nil nil nil buffer-file-name)) | |
35 nil) | |
36 | |
37 (or (assoc "\\.Z$" auto-mode-alist) | |
38 (setq auto-mode-alist | |
39 (cons '("\\.Z$" . uncompress-while-visiting) auto-mode-alist))) | |
40 | |
41 (defun uncompress-while-visiting () | |
42 "Temporary \"major mode\" used for .Z files, to uncompress the contents. | |
43 It then selects a major mode from the uncompressed file name and contents." | |
44 (if (and (not (null buffer-file-name)) | |
45 (string-match "\\.Z$" buffer-file-name)) | |
46 (set-visited-file-name | |
47 (substring buffer-file-name 0 (match-beginning 0)))) | |
48 (message "Uncompressing...") | |
49 (let ((buffer-read-only nil)) | |
50 (shell-command-on-region (point-min) (point-max) "uncompress" t)) | |
51 (message "Uncompressing...done") | |
52 (set-buffer-modified-p nil) | |
53 (make-local-variable 'write-file-hooks) | |
54 (or (memq 'uncompress-backup-file write-file-hooks) | |
55 (setq write-file-hooks (cons 'uncompress-backup-file write-file-hooks))) | |
56 (normal-mode)) | |
57 | |
58 (or (memq 'find-compressed-version find-file-not-found-hooks) | |
59 (setq find-file-not-found-hooks | |
60 (cons 'find-compressed-version find-file-not-found-hooks))) | |
61 | |
62 (defun find-compressed-version () | |
63 "Hook to read and uncompress the compressed version of a file." | |
64 ;; Just pretend we had visited the compressed file, | |
65 ;; and uncompress-while-visiting will do the rest. | |
66 (if (file-exists-p (concat buffer-file-name ".Z")) | |
67 (progn | |
68 (setq buffer-file-name (concat buffer-file-name ".Z")) | |
69 (insert-file-contents buffer-file-name t) | |
70 (goto-char (point-min)) | |
71 (setq error nil) | |
72 t))) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
73 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
21
diff
changeset
|
74 ;;; uncompress.el ends here |