diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-08 21:06:10 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-08 21:06:10 -0400 |
commit | e54eeb9bf08ed5920f5b302539f2d8ce97d909e8 (patch) | |
tree | ec7d97f8f5c1a9eb306451438d3b3d5e5d463df1 /lisp/jka-cmpr-hook.el | |
parent | 455851dd0cba67f2b1ec28296e34e34ff1668251 (diff) | |
download | emacs-e54eeb9bf08ed5920f5b302539f2d8ce97d909e8.tar.gz |
* lisp/jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
Add :version.
Diffstat (limited to 'lisp/jka-cmpr-hook.el')
-rw-r--r-- | lisp/jka-cmpr-hook.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/jka-cmpr-hook.el b/lisp/jka-cmpr-hook.el index 851bceccf30..32788b2dfb7 100644 --- a/lisp/jka-cmpr-hook.el +++ b/lisp/jka-cmpr-hook.el @@ -308,7 +308,7 @@ variables. Setting this through Custom does that automatically." (defcustom jka-compr-mode-alist-additions (purecopy '(("\\.tgz\\'" . tar-mode) ("\\.tbz2?\\'" . tar-mode) - ("\\.txz\\'" . 'tar-mode))) + ("\\.txz\\'" . tar-mode))) "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. @@ -318,6 +318,7 @@ 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)) + :version "24.4" ; add txz :set 'jka-compr-set :group 'jka-compr) |