diff options
| author | Glenn Morris | 2008-10-03 07:19:34 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-10-03 07:19:34 +0000 |
| commit | 6f34ccdf9c165571d8c5f4f4be42b1fbc69cff39 (patch) | |
| tree | e08eb2971b1115c18f23ce4f4da8b500f24dcdd6 | |
| parent | 4998f839473b36aad25ff159756a036c5259de4f (diff) | |
| download | emacs-6f34ccdf9c165571d8c5f4f4be42b1fbc69cff39.tar.gz emacs-6f34ccdf9c165571d8c5f4f4be42b1fbc69cff39.zip | |
(jka-compr-compression-info-list)
(jka-compr-mode-alist-additions): Also match `.tbz2'.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/jka-cmpr-hook.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4e46f35d184..fc861509adc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-10-03 Glenn Morris <rgm@gnu.org> | 1 | 2008-10-03 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * jka-cmpr-hook.el (jka-compr-compression-info-list) | ||
| 4 | (jka-compr-mode-alist-additions): Also match `.tbz2'. | ||
| 5 | |||
| 3 | * progmodes/idlwave.el (auto-mode-alist): Remove unnecessary autoload. | 6 | * progmodes/idlwave.el (auto-mode-alist): Remove unnecessary autoload. |
| 4 | * files.el (auto-mode-alist): Add .PRO as per above autoload. | 7 | * files.el (auto-mode-alist): Add .PRO as per above autoload. |
| 5 | 8 | ||
diff --git a/lisp/jka-cmpr-hook.el b/lisp/jka-cmpr-hook.el index 3377fed04c9..8ea83f996a9 100644 --- a/lisp/jka-cmpr-hook.el +++ b/lisp/jka-cmpr-hook.el | |||
| @@ -207,7 +207,7 @@ options through Custom does this automatically." | |||
| 207 | "bzip2ing" "bzip2" nil | 207 | "bzip2ing" "bzip2" nil |
| 208 | "bunzip2ing" "bzip2" ("-d") | 208 | "bunzip2ing" "bzip2" ("-d") |
| 209 | nil t "BZh"] | 209 | nil t "BZh"] |
| 210 | ["\\.tbz\\'" | 210 | ["\\.tbz2?\\'" |
| 211 | "bzip2ing" "bzip2" nil | 211 | "bzip2ing" "bzip2" nil |
| 212 | "bunzip2ing" "bzip2" ("-d") | 212 | "bunzip2ing" "bzip2" ("-d") |
| 213 | nil nil "BZh"] | 213 | nil nil "BZh"] |
| @@ -286,7 +286,7 @@ variables. Setting this through Custom does that automatically." | |||
| 286 | :group 'jka-compr) | 286 | :group 'jka-compr) |
| 287 | 287 | ||
| 288 | (defcustom jka-compr-mode-alist-additions | 288 | (defcustom jka-compr-mode-alist-additions |
| 289 | (list (cons "\\.tgz\\'" 'tar-mode) (cons "\\.tbz\\'" 'tar-mode)) | 289 | (list (cons "\\.tgz\\'" 'tar-mode) (cons "\\.tbz2?\\'" 'tar-mode)) |
| 290 | "List of pairs added to `auto-mode-alist' when installing jka-compr. | 290 | "List of pairs added to `auto-mode-alist' when installing jka-compr. |
| 291 | Uninstalling jka-compr removes all pairs from `auto-mode-alist' that | 291 | Uninstalling jka-compr removes all pairs from `auto-mode-alist' that |
| 292 | installing added. | 292 | installing added. |