]> code.delx.au - gnu-emacs/commitdiff
* lisp/jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
authorGlenn Morris <rgm@gnu.org>
Thu, 9 May 2013 01:06:10 +0000 (21:06 -0400)
committerGlenn Morris <rgm@gnu.org>
Thu, 9 May 2013 01:06:10 +0000 (21:06 -0400)
Add :version.

lisp/ChangeLog
lisp/jka-cmpr-hook.el

index e681469fedc3fb325e248076c9426233cef5799f..d5d2c80d61d595d2a57e8ea72bc4bef16756be24 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-09  Glenn Morris  <rgm@gnu.org>
+
+       * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
+       Add :version.
+
 2013-05-09  Leo Liu  <sdl.web@gmail.com>
 
        * progmodes/octave.el (inferior-octave-completion-at-point):
index 851bceccf30c15a7ff6638f5fb30845d5115fe5a..32788b2dfb76bf8ee1b59b21ef1c6334f9a32327 100644 (file)
@@ -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)