From: Glenn Morris Date: Thu, 9 May 2013 01:06:10 +0000 (-0400) Subject: * lisp/jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~238 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e54eeb9bf08ed5920f5b302539f2d8ce97d909e8;p=emacs.git * lisp/jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo. Add :version. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e681469fedc..d5d2c80d61d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-05-09 Glenn Morris + + * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo. + Add :version. + 2013-05-09 Leo Liu * progmodes/octave.el (inferior-octave-completion-at-point): 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)