1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(custom-browse-sort-alphabetically, custom-buffer-sort-alphabetically)

(custom-menu-sort-alphabetically): Doc fixes.  Add autoloads.
This commit is contained in:
Richard M. Stallman 2006-12-26 21:48:17 +00:00
parent df034a3f0c
commit ba5b643ea3
2 changed files with 10 additions and 3 deletions

View File

@ -5,6 +5,10 @@
2006-12-26 Richard Stallman <rms@gnu.org>
* cus-edit.el (custom-browse-sort-alphabetically)
(custom-buffer-sort-alphabetically)
(custom-menu-sort-alphabetically): Doc fixes. Add autoloads.
* image.el (image-type-header-regexps): Change element format
to include third item NOT-ALWAYS.
(image-type-from-data): Handle new format.

View File

@ -679,8 +679,9 @@ if that fails, the doc string with `custom-guess-doc-alist'."
;;; 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 @@ If `last', order groups after non-groups."
: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 @@ If `last', order groups after non-groups."
(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)