aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-02-03 04:33:30 +0000
committerRichard M. Stallman1993-02-03 04:33:30 +0000
commit13f4b6b3371e064f5331f1853e99be05dfc1d570 (patch)
treec4de4f0388d3132fca4267cb0418f36e6194686e
parenta59de7ab62c0ec2915ad3e6cb19ead2016ad0dab (diff)
downloademacs-13f4b6b3371e064f5331f1853e99be05dfc1d570.tar.gz
emacs-13f4b6b3371e064f5331f1853e99be05dfc1d570.zip
(sort-subr): Doc fixes.
-rw-r--r--lisp/sort.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/sort.el b/lisp/sort.el
index 4405b6e77c0..89957618b6b 100644
--- a/lisp/sort.el
+++ b/lisp/sort.el
@@ -46,11 +46,11 @@ It should move point to the end of the buffer if there are no more records.
46The first record is assumed to start at the position of point when sort-subr 46The first record is assumed to start at the position of point when sort-subr
47is called. 47is called.
48 48
49ENDRECFUN is is called with point within the record. 49ENDRECFUN is called with point within the record.
50It should move point to the end of the record. 50It should move point to the end of the record.
51 51
52STARTKEYFUN may moves from the start of the record to the start of the key. 52STARTKEYFUN moves from the start of the record to the start of the key.
53It may return either return a non-nil value to be used as the key, or 53It may return either a non-nil value to be used as the key, or
54else the key is the substring between the values of point after 54else the key is the substring between the values of point after
55STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key 55STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key
56starts at the beginning of the record. 56starts at the beginning of the record.