aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-03-23 00:43:06 +0000
committerRichard M. Stallman1994-03-23 00:43:06 +0000
commit32033024d70a286efffdcd53ed3021d25e3446ec (patch)
treecee82dba04aa8bf408faed6afefc83b1b34f3474
parent5907b8633f59de9a3ba1b1ba9f081ca49ed0646f (diff)
downloademacs-32033024d70a286efffdcd53ed3021d25e3446ec.tar.gz
emacs-32033024d70a286efffdcd53ed3021d25e3446ec.zip
(sort-subr): Add autoload.
-rw-r--r--lisp/sort.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/sort.el b/lisp/sort.el
index 61fa2988317..0d6dcb1abf9 100644
--- a/lisp/sort.el
+++ b/lisp/sort.el
@@ -32,6 +32,7 @@
32(defvar sort-fold-case nil 32(defvar sort-fold-case nil
33 "*Non-nil if the buffer sort functions should ignore case.") 33 "*Non-nil if the buffer sort functions should ignore case.")
34 34
35;;;###autoload
35(defun sort-subr (reverse nextrecfun endrecfun &optional startkeyfun endkeyfun) 36(defun sort-subr (reverse nextrecfun endrecfun &optional startkeyfun endkeyfun)
36 "General text sorting routine to divide buffer into records and sort them. 37 "General text sorting routine to divide buffer into records and sort them.
37Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN. 38Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN.