# HG changeset patch # User Richard M. Stallman # Date 1167169673 0 # Node ID 2472ac8d27d215aeb9f635fded48b10a2b341c25 # Parent fa5c8a721d5ea6dae72b42e5251810a13e4fb8ba (custom-browse-sort-alphabetically, custom-buffer-sort-alphabetically) (custom-menu-sort-alphabetically): Doc fixes. Add autoloads. diff -r fa5c8a721d5e -r 2472ac8d27d2 lisp/cus-edit.el --- a/lisp/cus-edit.el Tue Dec 26 20:29:26 2006 +0000 +++ b/lisp/cus-edit.el Tue Dec 26 21:47:53 2006 +0000 @@ -679,8 +679,9 @@ ;;; Sorting. +;;;###autoload (defcustom custom-browse-sort-alphabetically nil - "If non-nil, sort members of each customization group alphabetically." + "If non-nil, sort customization group alphabetically in `custom-browse'." :type 'boolean :group 'custom-browse) @@ -698,8 +699,9 @@ :type 'boolean :group 'custom-browse) +;;;###autoload (defcustom custom-buffer-sort-alphabetically nil - "If non-nil, sort members of each customization group alphabetically." + "If non-nil, sort each customization group alphabetically in Custom buffer." :type 'boolean :group 'custom-buffer) @@ -712,8 +714,9 @@ (const :tag "none" nil)) :group 'custom-buffer) +;;;###autoload (defcustom custom-menu-sort-alphabetically nil - "If non-nil, sort members of each customization group alphabetically." + "If non-nil, sort each customization group alphabetically in menus." :type 'boolean :group 'custom-menu)