2005-05-06 11:19:51 +00:00
|
|
|
|
;;; jka-cmpr-hook.el --- preloaded code to enable jka-compr.el
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
2017-01-01 03:14:01 +00:00
|
|
|
|
;; Copyright (C) 1993-1995, 1997, 1999-2000, 2002-2017 Free Software
|
2015-01-01 22:26:41 +00:00
|
|
|
|
;; Foundation, Inc.
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
2014-01-17 02:59:24 +00:00
|
|
|
|
;; Author: Jay K. Adams <jka@ece.cmu.edu>
|
2014-02-10 01:34:22 +00:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2005-04-30 20:15:33 +00:00
|
|
|
|
;; Keywords: data
|
2010-08-29 16:17:13 +00:00
|
|
|
|
;; Package: emacs
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2005-04-30 20:15:33 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
2006-02-27 01:47:56 +00:00
|
|
|
|
;; This file contains the code to enable and disable Auto-Compression mode.
|
2005-04-30 20:15:33 +00:00
|
|
|
|
;; It is preloaded. The guts of this mode are in jka-compr.el, which
|
|
|
|
|
;; is loaded only when you really try to uncompress something.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(defgroup compression nil
|
2005-07-04 02:14:13 +00:00
|
|
|
|
"Data compression utilities."
|
2005-04-30 20:15:33 +00:00
|
|
|
|
:group 'data)
|
|
|
|
|
|
|
|
|
|
(defgroup jka-compr nil
|
2005-07-04 02:14:13 +00:00
|
|
|
|
"jka-compr customization."
|
2005-04-30 20:15:33 +00:00
|
|
|
|
:group 'compression)
|
2011-07-15 17:18:53 +00:00
|
|
|
|
|
|
|
|
|
(defcustom jka-compr-verbose t
|
|
|
|
|
"If non-nil, output messages whenever compressing or uncompressing files."
|
|
|
|
|
:version "24.1"
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'jka-compr)
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
|
|
|
|
;; List of all the elements we actually added to file-coding-system-alist.
|
|
|
|
|
(defvar jka-compr-added-to-file-coding-system-alist nil)
|
|
|
|
|
|
|
|
|
|
(defvar jka-compr-file-name-handler-entry
|
|
|
|
|
nil
|
2006-02-27 01:47:56 +00:00
|
|
|
|
"`file-name-handler-alist' entry used by jka-compr I/O functions.")
|
|
|
|
|
|
|
|
|
|
;; Compiler defvars. These three variables will be defined later with
|
|
|
|
|
;; `defcustom' when everything used in the :set functions is defined.
|
|
|
|
|
(defvar jka-compr-compression-info-list)
|
|
|
|
|
(defvar jka-compr-mode-alist-additions)
|
|
|
|
|
(defvar jka-compr-load-suffixes)
|
|
|
|
|
|
|
|
|
|
(defvar jka-compr-compression-info-list--internal nil
|
|
|
|
|
"Stored value of `jka-compr-compression-info-list'.
|
|
|
|
|
If Auto Compression mode is enabled, this is the value of
|
|
|
|
|
`jka-compr-compression-info-list' when `jka-compr-install' was last called.
|
|
|
|
|
Otherwise, it is nil.")
|
|
|
|
|
|
|
|
|
|
(defvar jka-compr-mode-alist-additions--internal nil
|
|
|
|
|
"Stored value of `jka-compr-mode-alist-additions'.
|
|
|
|
|
If Auto Compression mode is enabled, this is the value of
|
|
|
|
|
`jka-compr-mode-alist-additions' when `jka-compr-install' was last called.
|
|
|
|
|
Otherwise, it is nil.")
|
|
|
|
|
|
|
|
|
|
(defvar jka-compr-load-suffixes--internal nil
|
|
|
|
|
"Stored value of `jka-compr-load-suffixes'.
|
|
|
|
|
If Auto Compression mode is enabled, this is the value of
|
|
|
|
|
`jka-compr-load-suffixes' when `jka-compr-install' was last called.
|
|
|
|
|
Otherwise, it is nil.")
|
|
|
|
|
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
|
|
|
|
(defun jka-compr-build-file-regexp ()
|
2009-11-12 06:55:39 +00:00
|
|
|
|
(purecopy
|
2010-12-08 02:18:02 +00:00
|
|
|
|
(let ((re-anchored '())
|
|
|
|
|
(re-free '()))
|
|
|
|
|
(dolist (e jka-compr-compression-info-list)
|
|
|
|
|
(let ((re (jka-compr-info-regexp e)))
|
|
|
|
|
(if (string-match "\\\\'\\'" re)
|
|
|
|
|
(push (substring re 0 (match-beginning 0)) re-anchored)
|
|
|
|
|
(push re re-free))))
|
|
|
|
|
(concat
|
|
|
|
|
(if re-free (concat (mapconcat 'identity re-free "\\|") "\\|"))
|
|
|
|
|
"\\(?:"
|
|
|
|
|
(mapconcat 'identity re-anchored "\\|")
|
|
|
|
|
"\\)" file-name-version-regexp "?\\'"))))
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
2005-11-11 04:23:02 +00:00
|
|
|
|
;; Functions for accessing the return value of jka-compr-get-compression-info
|
2005-04-30 20:15:33 +00:00
|
|
|
|
(defun jka-compr-info-regexp (info) (aref info 0))
|
|
|
|
|
(defun jka-compr-info-compress-message (info) (aref info 1))
|
|
|
|
|
(defun jka-compr-info-compress-program (info) (aref info 2))
|
|
|
|
|
(defun jka-compr-info-compress-args (info) (aref info 3))
|
|
|
|
|
(defun jka-compr-info-uncompress-message (info) (aref info 4))
|
|
|
|
|
(defun jka-compr-info-uncompress-program (info) (aref info 5))
|
|
|
|
|
(defun jka-compr-info-uncompress-args (info) (aref info 6))
|
|
|
|
|
(defun jka-compr-info-can-append (info) (aref info 7))
|
|
|
|
|
(defun jka-compr-info-strip-extension (info) (aref info 8))
|
|
|
|
|
(defun jka-compr-info-file-magic-bytes (info) (aref info 9))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun jka-compr-get-compression-info (filename)
|
|
|
|
|
"Return information about the compression scheme of FILENAME.
|
|
|
|
|
The determination as to which compression scheme, if any, to use is
|
|
|
|
|
based on the filename itself and `jka-compr-compression-info-list'."
|
2012-11-28 08:37:38 +00:00
|
|
|
|
(setq filename (file-name-sans-versions filename))
|
2005-04-30 20:15:33 +00:00
|
|
|
|
(catch 'compression-info
|
|
|
|
|
(let ((case-fold-search nil))
|
2010-12-08 02:18:02 +00:00
|
|
|
|
(dolist (x jka-compr-compression-info-list)
|
|
|
|
|
(and (string-match (jka-compr-info-regexp x) filename)
|
|
|
|
|
(throw 'compression-info x)))
|
2005-04-30 20:15:33 +00:00
|
|
|
|
nil)))
|
|
|
|
|
|
|
|
|
|
(defun jka-compr-install ()
|
|
|
|
|
"Install jka-compr.
|
|
|
|
|
This adds entries to `file-name-handler-alist' and `auto-mode-alist'
|
2012-01-21 00:41:05 +00:00
|
|
|
|
and `inhibit-local-variables-suffixes'."
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
|
|
|
|
(setq jka-compr-file-name-handler-entry
|
|
|
|
|
(cons (jka-compr-build-file-regexp) 'jka-compr-handler))
|
|
|
|
|
|
2005-11-11 04:23:02 +00:00
|
|
|
|
(push jka-compr-file-name-handler-entry file-name-handler-alist)
|
|
|
|
|
|
2006-02-27 01:47:56 +00:00
|
|
|
|
(setq jka-compr-compression-info-list--internal
|
|
|
|
|
jka-compr-compression-info-list
|
|
|
|
|
jka-compr-mode-alist-additions--internal
|
|
|
|
|
jka-compr-mode-alist-additions
|
|
|
|
|
jka-compr-load-suffixes--internal
|
|
|
|
|
jka-compr-load-suffixes)
|
|
|
|
|
|
2005-11-11 04:23:02 +00:00
|
|
|
|
(dolist (x jka-compr-compression-info-list)
|
|
|
|
|
;; Don't do multibyte encoding on the compressed files.
|
|
|
|
|
(let ((elt (cons (jka-compr-info-regexp x)
|
|
|
|
|
'(no-conversion . no-conversion))))
|
|
|
|
|
(push elt file-coding-system-alist)
|
|
|
|
|
(push elt jka-compr-added-to-file-coding-system-alist))
|
|
|
|
|
|
|
|
|
|
(and (jka-compr-info-strip-extension x)
|
|
|
|
|
;; Make entries in auto-mode-alist so that modes
|
|
|
|
|
;; are chosen right according to the file names
|
|
|
|
|
;; sans `.gz'.
|
|
|
|
|
(push (list (jka-compr-info-regexp x) nil 'jka-compr) auto-mode-alist)
|
2012-01-21 00:41:05 +00:00
|
|
|
|
;; Also add these regexps to inhibit-local-variables-suffixes,
|
|
|
|
|
;; so that a -*- line in the first file of a compressed tar file,
|
|
|
|
|
;; or a Local Variables section in a member file at the end of
|
|
|
|
|
;; the tar file don't override tar-mode.
|
2005-11-11 04:23:02 +00:00
|
|
|
|
(push (jka-compr-info-regexp x)
|
2012-01-21 00:41:05 +00:00
|
|
|
|
inhibit-local-variables-suffixes)))
|
2005-04-30 20:15:33 +00:00
|
|
|
|
(setq auto-mode-alist
|
|
|
|
|
(append auto-mode-alist jka-compr-mode-alist-additions))
|
|
|
|
|
|
|
|
|
|
;; Make sure that (load "foo") will find /bla/foo.el.gz.
|
2006-02-27 01:47:56 +00:00
|
|
|
|
(setq load-file-rep-suffixes
|
|
|
|
|
(append load-file-rep-suffixes jka-compr-load-suffixes nil)))
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
|
|
|
|
(defun jka-compr-installed-p ()
|
|
|
|
|
"Return non-nil if jka-compr is installed.
|
|
|
|
|
The return value is the entry in `file-name-handler-alist' for jka-compr."
|
|
|
|
|
|
|
|
|
|
(let ((fnha file-name-handler-alist)
|
|
|
|
|
(installed nil))
|
|
|
|
|
|
|
|
|
|
(while (and fnha (not installed))
|
|
|
|
|
(and (eq (cdr (car fnha)) 'jka-compr-handler)
|
|
|
|
|
(setq installed (car fnha)))
|
|
|
|
|
(setq fnha (cdr fnha)))
|
|
|
|
|
|
|
|
|
|
installed))
|
|
|
|
|
|
2006-02-27 01:47:56 +00:00
|
|
|
|
(defun jka-compr-update ()
|
|
|
|
|
"Update Auto Compression mode for changes in option values.
|
|
|
|
|
If you change the options `jka-compr-compression-info-list',
|
|
|
|
|
`jka-compr-mode-alist-additions' or `jka-compr-load-suffixes'
|
|
|
|
|
outside Custom, while Auto Compression mode is already enabled
|
|
|
|
|
\(as it is by default), then you have to call this function
|
|
|
|
|
afterward to properly update other variables. Setting these
|
|
|
|
|
options through Custom does this automatically."
|
|
|
|
|
(when (jka-compr-installed-p)
|
|
|
|
|
(jka-compr-uninstall)
|
|
|
|
|
(jka-compr-install)))
|
|
|
|
|
|
|
|
|
|
(defun jka-compr-set (variable value)
|
|
|
|
|
"Internal Custom :set function."
|
|
|
|
|
(set-default variable value)
|
|
|
|
|
(jka-compr-update))
|
|
|
|
|
|
2006-02-27 01:50:36 +00:00
|
|
|
|
;; I have this defined so that .Z files are assumed to be in unix
|
|
|
|
|
;; compress format; and .gz files, in gzip format, and .bz2 files in bzip fmt.
|
|
|
|
|
(defcustom jka-compr-compression-info-list
|
|
|
|
|
;;[regexp
|
|
|
|
|
;; compr-message compr-prog compr-args
|
|
|
|
|
;; uncomp-message uncomp-prog uncomp-args
|
2007-08-25 14:04:34 +00:00
|
|
|
|
;; can-append strip-extension-flag file-magic-bytes]
|
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
2009-11-06 05:16:23 +00:00
|
|
|
|
(mapcar 'purecopy
|
2010-12-08 02:18:02 +00:00
|
|
|
|
'(["\\.Z\\'"
|
2006-02-27 01:50:36 +00:00
|
|
|
|
"compressing" "compress" ("-c")
|
2007-09-14 04:26:26 +00:00
|
|
|
|
;; gzip is more common than uncompress. It can only read, not write.
|
2007-09-12 07:41:41 +00:00
|
|
|
|
"uncompressing" "gzip" ("-c" "-q" "-d")
|
2006-02-27 01:50:36 +00:00
|
|
|
|
nil t "\037\235"]
|
|
|
|
|
;; Formerly, these had an additional arg "-c", but that fails with
|
|
|
|
|
;; "Version 0.1pl2, 29-Aug-97." (RedHat 5.1 GNU/Linux) and
|
|
|
|
|
;; "Version 0.9.0b, 9-Sept-98".
|
2010-12-08 02:18:02 +00:00
|
|
|
|
["\\.bz2\\'"
|
2006-02-27 01:50:36 +00:00
|
|
|
|
"bzip2ing" "bzip2" nil
|
|
|
|
|
"bunzip2ing" "bzip2" ("-d")
|
|
|
|
|
nil t "BZh"]
|
2008-10-03 07:19:34 +00:00
|
|
|
|
["\\.tbz2?\\'"
|
2006-02-27 01:50:36 +00:00
|
|
|
|
"bzip2ing" "bzip2" nil
|
|
|
|
|
"bunzip2ing" "bzip2" ("-d")
|
|
|
|
|
nil nil "BZh"]
|
2010-12-08 02:18:02 +00:00
|
|
|
|
["\\.\\(?:tgz\\|svgz\\|sifz\\)\\'"
|
2006-02-27 01:50:36 +00:00
|
|
|
|
"compressing" "gzip" ("-c" "-q")
|
|
|
|
|
"uncompressing" "gzip" ("-c" "-q" "-d")
|
|
|
|
|
t nil "\037\213"]
|
2010-12-08 02:18:02 +00:00
|
|
|
|
["\\.g?z\\'"
|
2006-02-27 01:50:36 +00:00
|
|
|
|
"compressing" "gzip" ("-c" "-q")
|
|
|
|
|
"uncompressing" "gzip" ("-c" "-q" "-d")
|
|
|
|
|
t t "\037\213"]
|
2012-01-29 17:41:43 +00:00
|
|
|
|
["\\.lz\\'"
|
|
|
|
|
"Lzip compressing" "lzip" ("-c" "-q")
|
|
|
|
|
"Lzip uncompressing" "lzip" ("-c" "-q" "-d")
|
|
|
|
|
t t "LZIP"]
|
|
|
|
|
["\\.lzma\\'"
|
|
|
|
|
"LZMA compressing" "lzma" ("-c" "-q" "-z")
|
|
|
|
|
"LZMA uncompressing" "lzma" ("-c" "-q" "-d")
|
|
|
|
|
t t ""]
|
2010-12-08 02:18:02 +00:00
|
|
|
|
["\\.xz\\'"
|
2009-06-22 14:53:11 +00:00
|
|
|
|
"XZ compressing" "xz" ("-c" "-q")
|
|
|
|
|
"XZ uncompressing" "xz" ("-c" "-q" "-d")
|
|
|
|
|
t t "\3757zXZ\0"]
|
2013-02-20 14:30:23 +00:00
|
|
|
|
["\\.txz\\'"
|
|
|
|
|
"XZ compressing" "xz" ("-c" "-q")
|
|
|
|
|
"XZ uncompressing" "xz" ("-c" "-q" "-d")
|
|
|
|
|
t nil "\3757zXZ\0"]
|
2006-02-27 01:50:36 +00:00
|
|
|
|
;; dzip is gzip with random access. Its compression program can't
|
|
|
|
|
;; read/write stdin/out, so .dz files can only be viewed without
|
|
|
|
|
;; saving, having their contents decompressed with gzip.
|
|
|
|
|
["\\.dz\\'"
|
|
|
|
|
nil nil nil
|
|
|
|
|
"uncompressing" "gzip" ("-c" "-q" "-d")
|
2016-11-05 09:42:15 +00:00
|
|
|
|
nil t "\037\213"]
|
|
|
|
|
["\\.zst\\'"
|
|
|
|
|
"zstd compressing" "zstd" ("-c" "-q")
|
|
|
|
|
"zstd uncompressing" "zstd" ("-c" "-q" "-d")
|
|
|
|
|
t t "\050\265\057\375"]
|
|
|
|
|
["\\.tzst\\'"
|
|
|
|
|
"zstd compressing" "zstd" ("-c" "-q")
|
|
|
|
|
"zstd uncompressing" "zstd" ("-c" "-q" "-d")
|
|
|
|
|
t nil "\050\265\057\375"]))
|
2006-02-27 01:50:36 +00:00
|
|
|
|
|
|
|
|
|
"List of vectors that describe available compression techniques.
|
|
|
|
|
Each element, which describes a compression technique, is a vector of
|
|
|
|
|
the form [REGEXP COMPRESS-MSG COMPRESS-PROGRAM COMPRESS-ARGS
|
|
|
|
|
UNCOMPRESS-MSG UNCOMPRESS-PROGRAM UNCOMPRESS-ARGS
|
|
|
|
|
APPEND-FLAG STRIP-EXTENSION-FLAG FILE-MAGIC-CHARS], where:
|
|
|
|
|
|
|
|
|
|
regexp is a regexp that matches filenames that are
|
|
|
|
|
compressed with this format
|
|
|
|
|
|
|
|
|
|
compress-msg is the message to issue to the user when doing this
|
|
|
|
|
type of compression (nil means no message)
|
|
|
|
|
|
|
|
|
|
compress-program is a program that performs this compression
|
|
|
|
|
(nil means visit file in read-only mode)
|
|
|
|
|
|
|
|
|
|
compress-args is a list of args to pass to the compress program
|
|
|
|
|
|
|
|
|
|
uncompress-msg is the message to issue to the user when doing this
|
|
|
|
|
type of uncompression (nil means no message)
|
|
|
|
|
|
|
|
|
|
uncompress-program is a program that performs this compression
|
|
|
|
|
|
|
|
|
|
uncompress-args is a list of args to pass to the uncompress program
|
|
|
|
|
|
|
|
|
|
append-flag is non-nil if this compression technique can be
|
|
|
|
|
appended
|
|
|
|
|
|
|
|
|
|
strip-extension-flag non-nil means strip the regexp from file names
|
|
|
|
|
before attempting to set the mode.
|
|
|
|
|
|
|
|
|
|
file-magic-chars is a string of characters that you would find
|
|
|
|
|
at the beginning of a file compressed in this way.
|
|
|
|
|
|
|
|
|
|
If you set this outside Custom while Auto Compression mode is
|
|
|
|
|
already enabled \(as it is by default), you have to call
|
|
|
|
|
`jka-compr-update' after setting it to properly update other
|
|
|
|
|
variables. Setting this through Custom does that automatically."
|
|
|
|
|
:type '(repeat (vector regexp
|
|
|
|
|
(choice :tag "Compress Message"
|
|
|
|
|
(string :format "%v")
|
|
|
|
|
(const :tag "No Message" nil))
|
|
|
|
|
(choice :tag "Compress Program"
|
|
|
|
|
(string)
|
|
|
|
|
(const :tag "None" nil))
|
|
|
|
|
(repeat :tag "Compress Arguments" string)
|
|
|
|
|
(choice :tag "Uncompress Message"
|
|
|
|
|
(string :format "%v")
|
|
|
|
|
(const :tag "No Message" nil))
|
|
|
|
|
(choice :tag "Uncompress Program"
|
|
|
|
|
(string)
|
|
|
|
|
(const :tag "None" nil))
|
|
|
|
|
(repeat :tag "Uncompress Arguments" string)
|
|
|
|
|
(boolean :tag "Append")
|
|
|
|
|
(boolean :tag "Strip Extension")
|
|
|
|
|
(string :tag "Magic Bytes")))
|
|
|
|
|
:set 'jka-compr-set
|
2012-11-28 08:37:38 +00:00
|
|
|
|
:version "24.1" ; removed version extension piece
|
2006-02-27 01:50:36 +00:00
|
|
|
|
:group 'jka-compr)
|
|
|
|
|
|
|
|
|
|
(defcustom jka-compr-mode-alist-additions
|
2013-02-20 14:30:23 +00:00
|
|
|
|
(purecopy '(("\\.tgz\\'" . tar-mode)
|
|
|
|
|
("\\.tbz2?\\'" . tar-mode)
|
2016-11-05 09:42:15 +00:00
|
|
|
|
("\\.txz\\'" . tar-mode)
|
|
|
|
|
("\\.tzst\\'" . tar-mode)))
|
2006-02-27 01:50:36 +00:00
|
|
|
|
"List of pairs added to `auto-mode-alist' when installing jka-compr.
|
|
|
|
|
Uninstalling jka-compr removes all pairs from `auto-mode-alist' that
|
|
|
|
|
installing added.
|
|
|
|
|
|
|
|
|
|
If you set this outside Custom while Auto Compression mode is
|
|
|
|
|
already enabled \(as it is by default), you have to call
|
|
|
|
|
`jka-compr-update' after setting it to properly update other
|
|
|
|
|
variables. Setting this through Custom does that automatically."
|
|
|
|
|
:type '(repeat (cons string symbol))
|
2013-05-09 01:06:10 +00:00
|
|
|
|
:version "24.4" ; add txz
|
2006-02-27 01:50:36 +00:00
|
|
|
|
:set 'jka-compr-set
|
|
|
|
|
:group 'jka-compr)
|
|
|
|
|
|
2013-02-20 14:30:23 +00:00
|
|
|
|
(defcustom jka-compr-load-suffixes (purecopy '(".gz"))
|
2006-02-27 01:50:36 +00:00
|
|
|
|
"List of compression related suffixes to try when loading files.
|
|
|
|
|
Enabling Auto Compression mode appends this list to `load-file-rep-suffixes',
|
|
|
|
|
which see. Disabling Auto Compression mode removes all suffixes
|
|
|
|
|
from `load-file-rep-suffixes' that enabling added.
|
|
|
|
|
|
|
|
|
|
If you set this outside Custom while Auto Compression mode is
|
|
|
|
|
already enabled \(as it is by default), you have to call
|
|
|
|
|
`jka-compr-update' after setting it to properly update other
|
|
|
|
|
variables. Setting this through Custom does that automatically."
|
|
|
|
|
:type '(repeat string)
|
|
|
|
|
:set 'jka-compr-set
|
|
|
|
|
:group 'jka-compr)
|
|
|
|
|
|
2005-04-30 20:15:33 +00:00
|
|
|
|
(define-minor-mode auto-compression-mode
|
Fix minor mode docstrings for the new meaning of a nil ARG.
* abbrev.el (abbrev-mode):
* allout.el (allout-mode):
* autoinsert.el (auto-insert-mode):
* autoarg.el (autoarg-mode, autoarg-kp-mode):
* autorevert.el (auto-revert-mode, auto-revert-tail-mode)
(global-auto-revert-mode):
* battery.el (display-battery-mode):
* composite.el (global-auto-composition-mode)
(auto-composition-mode):
* delsel.el (delete-selection-mode):
* desktop.el (desktop-save-mode):
* dired-x.el (dired-omit-mode):
* dirtrack.el (dirtrack-mode):
* doc-view.el (doc-view-minor-mode):
* double.el (double-mode):
* electric.el (electric-indent-mode, electric-pair-mode):
* emacs-lock.el (emacs-lock-mode):
* epa-hook.el (auto-encryption-mode):
* follow.el (follow-mode):
* font-core.el (font-lock-mode):
* frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
* help.el (temp-buffer-resize-mode):
* hilit-chg.el (highlight-changes-mode)
(highlight-changes-visible-mode):
* hi-lock.el (hi-lock-mode):
* hl-line.el (hl-line-mode, global-hl-line-mode):
* icomplete.el (icomplete-mode):
* ido.el (ido-everywhere):
* image-file.el (auto-image-file-mode):
* image-mode.el (image-minor-mode):
* iswitchb.el (iswitchb-mode):
* jka-cmpr-hook.el (auto-compression-mode):
* linum.el (linum-mode):
* longlines.el (longlines-mode):
* master.el (master-mode):
* mb-depth.el (minibuffer-depth-indicate-mode):
* menu-bar.el (menu-bar-mode):
* minibuf-eldef.el (minibuffer-electric-default-mode):
* mouse-sel.el (mouse-sel-mode):
* msb.el (msb-mode):
* mwheel.el (mouse-wheel-mode):
* outline.el (outline-minor-mode):
* paren.el (show-paren-mode):
* recentf.el (recentf-mode):
* reveal.el (reveal-mode, global-reveal-mode):
* rfn-eshadow.el (file-name-shadow-mode):
* ruler-mode.el (ruler-mode):
* savehist.el (savehist-mode):
* scroll-all.el (scroll-all-mode):
* scroll-bar.el (scroll-bar-mode):
* server.el (server-mode):
* shell.el (shell-dirtrack-mode):
* simple.el (auto-fill-mode, transient-mark-mode)
(visual-line-mode, overwrite-mode, binary-overwrite-mode)
(line-number-mode, column-number-mode, size-indication-mode)
(auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
* strokes.el (strokes-mode):
* time.el (display-time-mode):
* t-mouse.el (gpm-mouse-mode):
* tool-bar.el (tool-bar-mode):
* tooltip.el (tooltip-mode):
* type-break.el (type-break-mode-line-message-mode)
(type-break-query-mode):
* view.el (view-mode):
* whitespace.el (whitespace-mode, whitespace-newline-mode)
(global-whitespace-mode, global-whitespace-newline-mode):
* xt-mouse.el (xterm-mouse-mode): Doc fix.
* emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Fix
autogenerated docstring.
2011-10-19 12:54:24 +00:00
|
|
|
|
"Toggle Auto Compression mode.
|
|
|
|
|
With a prefix argument ARG, enable Auto Compression mode if ARG
|
|
|
|
|
is positive, and disable it otherwise. If called from Lisp,
|
|
|
|
|
enable the mode if ARG is omitted or nil.
|
|
|
|
|
|
|
|
|
|
Auto Compression mode is a global minor mode. When enabled,
|
|
|
|
|
compressed files are automatically uncompressed for reading, and
|
|
|
|
|
compressed when writing."
|
2005-11-16 04:06:52 +00:00
|
|
|
|
:global t :init-value t :group 'jka-compr :version "22.1"
|
2005-04-30 20:15:33 +00:00
|
|
|
|
(let* ((installed (jka-compr-installed-p))
|
|
|
|
|
(flag auto-compression-mode))
|
|
|
|
|
(cond
|
|
|
|
|
((and flag installed) t) ; already installed
|
|
|
|
|
((and (not flag) (not installed)) nil) ; already not installed
|
|
|
|
|
(flag (jka-compr-install))
|
|
|
|
|
(t (jka-compr-uninstall)))))
|
|
|
|
|
|
|
|
|
|
(defmacro with-auto-compression-mode (&rest body)
|
2011-07-14 01:09:00 +00:00
|
|
|
|
"Evaluate BODY with automatic file compression and uncompression enabled."
|
Use `declare' in defmacros.
* lisp/window.el (save-selected-window):
* lisp/subr.el (with-temp-file, with-temp-message, with-syntax-table):
* lisp/progmodes/python.el (def-python-skeleton):
* lisp/net/dbus.el (dbus-ignore-errors):
* lisp/jka-cmpr-hook.el (with-auto-compression-mode):
* lisp/international/mule.el (with-category-table):
* lisp/emacs-lisp/timer.el (with-timeout):
* lisp/emacs-lisp/lisp-mnt.el (lm-with-file):
* lisp/emacs-lisp/eieio.el (with-slots):
* lisp/emacs-lisp/easymenu.el (easy-menu-define):
* lisp/emacs-lisp/debug.el (debugger-env-macro):
* lisp/emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
(Multiple-value-call, Multiple-value-prog1):
* lisp/emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
(cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
edebug rule to definition.
* lisp/emacs-lisp/lisp-mode.el (save-selected-window)
(with-current-buffer, combine-after-change-calls)
(with-output-to-string, with-temp-file, with-temp-buffer)
(with-temp-message, with-syntax-table, read-if, eval-after-load)
(dolist, dotimes, when, unless):
* lisp/emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
2010-08-30 13:03:05 +00:00
|
|
|
|
(declare (indent 0))
|
2005-04-30 20:15:33 +00:00
|
|
|
|
(let ((already-installed (make-symbol "already-installed")))
|
|
|
|
|
`(let ((,already-installed (jka-compr-installed-p)))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(unless ,already-installed
|
|
|
|
|
(jka-compr-install))
|
|
|
|
|
,@body)
|
|
|
|
|
(unless ,already-installed
|
|
|
|
|
(jka-compr-uninstall))))))
|
|
|
|
|
|
2005-11-11 04:23:02 +00:00
|
|
|
|
;; This is what we need to know about jka-compr-handler
|
|
|
|
|
;; in order to decide when to call it.
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
|
|
|
|
(put 'jka-compr-handler 'safe-magic t)
|
2005-10-10 19:56:42 +00:00
|
|
|
|
(put 'jka-compr-handler 'operations '(byte-compiler-base-file-name
|
2005-04-30 20:15:33 +00:00
|
|
|
|
write-region insert-file-contents
|
|
|
|
|
file-local-copy load))
|
|
|
|
|
|
2005-11-11 04:23:02 +00:00
|
|
|
|
;; Turn on the mode.
|
2005-11-15 00:07:03 +00:00
|
|
|
|
(when auto-compression-mode (auto-compression-mode 1))
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
2005-05-06 11:19:51 +00:00
|
|
|
|
(provide 'jka-cmpr-hook)
|
2005-04-30 20:15:33 +00:00
|
|
|
|
|
2005-05-06 11:19:51 +00:00
|
|
|
|
;;; jka-cmpr-hook.el ends here
|