comparison lisp/sort.el @ 1836:fe4f7650a94b

(sort-subr): Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Wed, 03 Feb 1993 04:33:30 +0000
parents 61c6983219ff
children d48f094be56e
comparison
equal deleted inserted replaced
1835:0aa8e261f174 1836:fe4f7650a94b
44 It moves point to the start of the next record. 44 It moves point to the start of the next record.
45 It should move point to the end of the buffer if there are no more records. 45 It should move point to the end of the buffer if there are no more records.
46 The first record is assumed to start at the position of point when sort-subr 46 The first record is assumed to start at the position of point when sort-subr
47 is called. 47 is called.
48 48
49 ENDRECFUN is is called with point within the record. 49 ENDRECFUN is called with point within the record.
50 It should move point to the end of the record. 50 It should move point to the end of the record.
51 51
52 STARTKEYFUN may moves from the start of the record to the start of the key. 52 STARTKEYFUN moves from the start of the record to the start of the key.
53 It may return either return a non-nil value to be used as the key, or 53 It may return either a non-nil value to be used as the key, or
54 else the key is the substring between the values of point after 54 else the key is the substring between the values of point after
55 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key 55 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key
56 starts at the beginning of the record. 56 starts at the beginning of the record.
57 57
58 ENDKEYFUN moves from the start of the sort key to the end of the sort key. 58 ENDKEYFUN moves from the start of the sort key to the end of the sort key.