• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching defs:sort*

177   "Various sorts of searching and matching."
683 (defcustom custom-browse-sort-alphabetically nil
684 "If non-nil, sort customization group alphabetically in `custom-browse'."
703 (defcustom custom-buffer-sort-alphabetically nil
704 "If non-nil, sort each customization group alphabetically in Custom buffer."
718 (defcustom custom-menu-sort-alphabetically nil
719 "If non-nil, sort each customization group alphabetically in menus."
734 (defun custom-sort-items (items sort-alphabetically order-groups)
735 "Return a sorted copy of ITEMS.
737 If SORT-ALPHABETICALLY non-nil, sort alphabetically.
740 (sort (copy-sequence items)
745 ;; Since we don't care about A and B order, maybe sort.
746 (when sort-alphabetically
749 ;; If B is also a group, maybe sort. Otherwise, order A and B.
751 (when sort-alphabetically
757 (sort-alphabetically
758 ;; Since A and B cannot be groups, sort.
1206 (custom-buffer-create (custom-sort-items found t 'first)
1274 (custom-buffer-create (custom-sort-items
1304 (custom-sort-items
1337 (custom-buffer-create (custom-sort-items found t nil)
1357 (custom-buffer-create (custom-sort-items found t nil)
1375 (custom-buffer-create (custom-sort-items found t nil)
1408 (custom-sort-items found t custom-buffer-order-groups)
1965 The list should be sorted most significant first.")
3869 (let* ((members (custom-sort-items members
3870 custom-browse-sort-alphabetically
3985 (let* ((members (custom-sort-items members
3986 custom-buffer-sort-alphabetically
4287 sort-fold-case)
4288 ;; First create a sorted list of saved variables.
4296 (setq saved-list (sort (cdr saved-list) 'string<))
4362 sort-fold-case)
4363 ;; First create a sorted list of saved faces.
4369 (setq saved-list (sort (cdr saved-list) 'string<))
4467 (members (custom-sort-items (get symbol 'custom-group)
4468 custom-menu-sort-alphabetically