Mercurial > emacs
changeset 74921:2472ac8d27d2
(custom-browse-sort-alphabetically, custom-buffer-sort-alphabetically)
(custom-menu-sort-alphabetically): Doc fixes. Add autoloads.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 26 Dec 2006 21:47:53 +0000 |
parents | fa5c8a721d5e |
children | 33f45984a578 |
files | lisp/cus-edit.el |
diffstat | 1 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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)