aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-11 16:57:15 +0200
committerLars Magne Ingebrigtsen2011-07-11 16:57:15 +0200
commit5bedb26cb8cc705c14a3e6e8d5474bf220345775 (patch)
treeef30ab5c5def2ad1f61372ece38ef9b966a39ded /lisp
parent1d52da10bc882366a964948ca1dbf00536a51e93 (diff)
downloademacs-5bedb26cb8cc705c14a3e6e8d5474bf220345775.tar.gz
emacs-5bedb26cb8cc705c14a3e6e8d5474bf220345775.zip
(custom-guess-name-alist): -alist variables should use the `alist' type.
Suggested by Drew Adams. Fixes: debbugs:3120
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/cus-edit.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ffba716f189..8ae1978b849 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org> 12011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 2
3 * cus-edit.el (custom-guess-name-alist): -alist variables should
4 use the `alist' type (bug#3120). Suggested by Drew Adams.
5
3 * printing.el: Add documentation to all the `pr-toggle-' commands. 6 * printing.el: Add documentation to all the `pr-toggle-' commands.
4 7
52011-07-11 Leo <sdl.web@gmail.com> (tiny change) 82011-07-11 Leo <sdl.web@gmail.com> (tiny change)
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 820bcfeacba..22b7cc6b3fe 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -594,7 +594,7 @@ WIDGET is the widget to apply the filter entries of MENU on."
594 ("-function\\'" function) 594 ("-function\\'" function)
595 ("-functions\\'" (repeat function)) 595 ("-functions\\'" (repeat function))
596 ("-list\\'" (repeat sexp)) 596 ("-list\\'" (repeat sexp))
597 ("-alist\\'" (repeat (cons sexp sexp)))) 597 ("-alist\\'" (alist :key-type sexp :value-type sexp)))
598 "Alist of (MATCH TYPE). 598 "Alist of (MATCH TYPE).
599 599
600MATCH should be a regexp matching the name of a symbol, and TYPE should 600MATCH should be a regexp matching the name of a symbol, and TYPE should