aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/sort.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-08-18 20:01:25 +0000
committerRichard M. Stallman <[email protected]>1997-08-18 20:01:25 +0000
commitab1c7f352775e81baaa9137e87dca9afef6257f0 (patch)
treeefcb9d9c164822cc9ac94097fb0585fa6479f0e0 /lisp/sort.el
parentdd9d15d6379485dcd33117c60134ed1c49980dcb (diff)
Customized.
Diffstat (limited to 'lisp/sort.el')
-rw-r--r--lisp/sort.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/sort.el b/lisp/sort.el
index fcd8906b1f..886d77eb40 100644
--- a/lisp/sort.el
+++ b/lisp/sort.el
@@ -30,8 +30,14 @@
;;; Code:
-(defvar sort-fold-case nil
- "*Non-nil if the buffer sort functions should ignore case.")
+(defgroup sort nil
+ "Commands to sort text in an Emacs buffer."
+ :group 'data)
+
+(defcustom sort-fold-case nil
+ "*Non-nil if the buffer sort functions should ignore case."
+ :group 'sort
+ :type 'boolean)
;;;###autoload
(defun sort-subr (reverse nextrecfun endrecfun &optional startkeyfun endkeyfun)