comparison lisp/sort.el @ 69502:709ebd36d96d

(sort-build-lists): Temporarily bind inhibit-field-text-motion to t.
author Kenichi Handa <handa@m17n.org>
date Thu, 16 Mar 2006 02:10:56 +0000
parents 68ba98572eb9
children afd67a8ec176
comparison
equal deleted inserted replaced
69501:c22f46390a8f 69502:709ebd36d96d
119 ;; The records appear in the list lastmost first! 119 ;; The records appear in the list lastmost first!
120 120
121 (defun sort-build-lists (nextrecfun endrecfun startkeyfun endkeyfun) 121 (defun sort-build-lists (nextrecfun endrecfun startkeyfun endkeyfun)
122 (let ((sort-lists ()) 122 (let ((sort-lists ())
123 (start-rec nil) 123 (start-rec nil)
124 (inhibit-field-text-motion t)
124 done key) 125 done key)
125 ;; Loop over sort records. 126 ;; Loop over sort records.
126 ;(goto-char (point-min)) -- it is the caller's responsibility to 127 ;(goto-char (point-min)) -- it is the caller's responsibility to
127 ;arrange this if necessary 128 ;arrange this if necessary
128 (while (not (eobp)) 129 (while (not (eobp))