aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2006-01-02 22:27:08 +0000
committerChong Yidong2006-01-02 22:27:08 +0000
commit3ee073674a70df40f1186762e82a4bda1d8fd500 (patch)
treeca736ab1a5fb4f81d8e3856154a395b341793dfa
parentd0f1e2f8e018a86fea56abf75a2dc3435ed88106 (diff)
downloademacs-3ee073674a70df40f1186762e82a4bda1d8fd500.tar.gz
emacs-3ee073674a70df40f1186762e82a4bda1d8fd500.zip
* cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
Move to `custom-buffer' group.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/cus-edit.el4
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 53e59f3dca9..761f2212444 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12006-01-02 Chong Yidong <cyd@stupidchicken.com> 12006-01-02 Chong Yidong <cyd@stupidchicken.com>
2 2
3 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
4 Move to `custom-buffer' group.
5
3 * cus-theme.el: Rewrite the Custom New Theme Mode interface. 6 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
4 (custom-new-theme-mode-map, custom-theme-insert-variable-marker) 7 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
5 (custom-theme-insert-face-marker, custom-theme-variable-menu) 8 (custom-theme-insert-face-marker, custom-theme-variable-menu)
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 5e9c98c7252..e8ad8551f46 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -619,7 +619,7 @@ used.
619This is used for guessing the type of variables not declared with 619This is used for guessing the type of variables not declared with
620customize." 620customize."
621 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type"))) 621 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type")))
622 :group 'customize) 622 :group 'custom-buffer)
623 623
624(defcustom custom-guess-doc-alist 624(defcustom custom-guess-doc-alist
625 '(("\\`\\*?Non-nil " boolean)) 625 '(("\\`\\*?Non-nil " boolean))
@@ -633,7 +633,7 @@ matches the name of the symbol will be used.
633This is used for guessing the type of variables not declared with 633This is used for guessing the type of variables not declared with
634customize." 634customize."
635 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type"))) 635 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type")))
636 :group 'customize) 636 :group 'custom-buffer)
637 637
638(defun custom-guess-type (symbol) 638(defun custom-guess-type (symbol)
639 "Guess a widget suitable for editing the value of SYMBOL. 639 "Guess a widget suitable for editing the value of SYMBOL.