diff options
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/cus-edit.el | 4 |
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 @@ 2006-01-02 Chong Yidong <cyd@stupidchicken.com> + * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist): + Move to `custom-buffer' group. + * cus-theme.el: Rewrite the Custom New Theme Mode interface. (custom-new-theme-mode-map, custom-theme-insert-variable-marker) (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. This is used for guessing the type of variables not declared with customize." :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type"))) - :group 'customize) + :group 'custom-buffer) (defcustom custom-guess-doc-alist '(("\\`\\*?Non-nil " boolean)) @@ -633,7 +633,7 @@ matches the name of the symbol will be used. This is used for guessing the type of variables not declared with customize." :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type"))) - :group 'customize) + :group 'custom-buffer) (defun custom-guess-type (symbol) "Guess a widget suitable for editing the value of SYMBOL. |