1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

* lisp/jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.

Add :version.
This commit is contained in:
Glenn Morris 2013-05-08 21:06:10 -04:00
parent 455851dd0c
commit e54eeb9bf0
2 changed files with 7 additions and 1 deletions

View 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):

View 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)