aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-05-08 21:06:10 -0400
committerGlenn Morris2013-05-08 21:06:10 -0400
commite54eeb9bf08ed5920f5b302539f2d8ce97d909e8 (patch)
treeec7d97f8f5c1a9eb306451438d3b3d5e5d463df1
parent455851dd0cba67f2b1ec28296e34e34ff1668251 (diff)
downloademacs-e54eeb9bf08ed5920f5b302539f2d8ce97d909e8.tar.gz
emacs-e54eeb9bf08ed5920f5b302539f2d8ce97d909e8.zip
* lisp/jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
Add :version.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/jka-cmpr-hook.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e681469fedc..d5d2c80d61d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-05-09 Glenn Morris <rgm@gnu.org>
2
3 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
4 Add :version.
5
12013-05-09 Leo Liu <sdl.web@gmail.com> 62013-05-09 Leo Liu <sdl.web@gmail.com>
2 7
3 * progmodes/octave.el (inferior-octave-completion-at-point): 8 * 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."
308(defcustom jka-compr-mode-alist-additions 308(defcustom jka-compr-mode-alist-additions
309 (purecopy '(("\\.tgz\\'" . tar-mode) 309 (purecopy '(("\\.tgz\\'" . tar-mode)
310 ("\\.tbz2?\\'" . tar-mode) 310 ("\\.tbz2?\\'" . tar-mode)
311 ("\\.txz\\'" . 'tar-mode))) 311 ("\\.txz\\'" . tar-mode)))
312 "List of pairs added to `auto-mode-alist' when installing jka-compr. 312 "List of pairs added to `auto-mode-alist' when installing jka-compr.
313Uninstalling jka-compr removes all pairs from `auto-mode-alist' that 313Uninstalling jka-compr removes all pairs from `auto-mode-alist' that
314installing added. 314installing added.
@@ -318,6 +318,7 @@ already enabled \(as it is by default), you have to call
318`jka-compr-update' after setting it to properly update other 318`jka-compr-update' after setting it to properly update other
319variables. Setting this through Custom does that automatically." 319variables. Setting this through Custom does that automatically."
320 :type '(repeat (cons string symbol)) 320 :type '(repeat (cons string symbol))
321 :version "24.4" ; add txz
321 :set 'jka-compr-set 322 :set 'jka-compr-set
322 :group 'jka-compr) 323 :group 'jka-compr)
323 324