comparison lisp/sort.el @ 19418:142900099257

Customized.
author Richard M. Stallman <rms@gnu.org>
date Mon, 18 Aug 1997 20:01:25 +0000
parents b06dea50c67a
children 8a6ee5b485d2
comparison
equal deleted inserted replaced
19417:d87f6112e034 19418:142900099257
28 ;; This package provides the sorting facilities documented in the Emacs 28 ;; This package provides the sorting facilities documented in the Emacs
29 ;; user's manual. 29 ;; user's manual.
30 30
31 ;;; Code: 31 ;;; Code:
32 32
33 (defvar sort-fold-case nil 33 (defgroup sort nil
34 "*Non-nil if the buffer sort functions should ignore case.") 34 "Commands to sort text in an Emacs buffer."
35 :group 'data)
36
37 (defcustom sort-fold-case nil
38 "*Non-nil if the buffer sort functions should ignore case."
39 :group 'sort
40 :type 'boolean)
35 41
36 ;;;###autoload 42 ;;;###autoload
37 (defun sort-subr (reverse nextrecfun endrecfun &optional startkeyfun endkeyfun) 43 (defun sort-subr (reverse nextrecfun endrecfun &optional startkeyfun endkeyfun)
38 "General text sorting routine to divide buffer into records and sort them. 44 "General text sorting routine to divide buffer into records and sort them.
39 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN. 45 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN.