comparison lisp/sort.el @ 136:4d8caa5e2cba

*** empty log message ***
author root <root>
date Tue, 11 Dec 1990 13:43:28 +0000
parents e1b5a59d0f91
children 1e0bc00dca7a
comparison
equal deleted inserted replaced
135:e1b5a59d0f91 136:4d8caa5e2cba
91 (sort-reorder-buffer sort-lists old))) 91 (sort-reorder-buffer sort-lists old)))
92 (message "Reordering buffer... Done")) 92 (message "Reordering buffer... Done"))
93 nil) 93 nil)
94 94
95 ;; Parse buffer into records using the arguments as Lisp expressions; 95 ;; Parse buffer into records using the arguments as Lisp expressions;
96 ;; return a list of records. Each record looks like (KEY STARTPOS ENDPOS) 96 ;; return a list of records. Each record looks like (KEY STARTPOS . ENDPOS)
97 ;; where KEY is the sort key (a number or string), 97 ;; where KEY is the sort key (a number or string),
98 ;; and STARTPOS and ENDPOS are the bounds of this record in the buffer. 98 ;; and STARTPOS and ENDPOS are the bounds of this record in the buffer.
99 99
100 ;; The records appear in the list lastmost first! 100 ;; The records appear in the list lastmost first!
101 101