Mercurial > emacs
annotate lisp/sort.el @ 70832:11c5c394f422
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 21 May 2006 23:34:59 +0000 |
parents | 734f4a4c96e2 |
children | d758e535681e 65ca8fb66a0d |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
34601
diff
changeset
|
1 ;;; sort.el --- commands to sort text in an Emacs buffer |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
3 ;; Copyright (C) 1986, 1987, 1994, 1995, 2002, 2003, |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
4 ;; 2004, 2005, 2006 Free Software Foundation, Inc. |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
5 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
6 ;; Author: Howie Kaye |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
7 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: unix |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
9 |
70 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
70 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
70 | 26 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2185
diff
changeset
|
27 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2185
diff
changeset
|
28 |
14169 | 29 ;; This package provides the sorting facilities documented in the Emacs |
30 ;; user's manual. | |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2185
diff
changeset
|
31 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
32 ;;; Code: |
70 | 33 |
19418 | 34 (defgroup sort nil |
35 "Commands to sort text in an Emacs buffer." | |
36 :group 'data) | |
37 | |
38 (defcustom sort-fold-case nil | |
39 "*Non-nil if the buffer sort functions should ignore case." | |
40 :group 'sort | |
41 :type 'boolean) | |
3409
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
42 |
6474
79765ff7bfa1
(sort-subr): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
5747
diff
changeset
|
43 ;;;###autoload |
51414
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
44 (defun sort-subr (reverse nextrecfun endrecfun |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
45 &optional startkeyfun endkeyfun predicate) |
70 | 46 "General text sorting routine to divide buffer into records and sort them. |
47 | |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
48 We divide the accessible portion of the buffer into disjoint pieces |
998 | 49 called sort records. A portion of each sort record (perhaps all of |
50 it) is designated as the sort key. The records are rearranged in the | |
51 buffer in order by their sort keys. The records may or may not be | |
52 contiguous. | |
70 | 53 |
54 Usually the records are rearranged in order of ascending sort key. | |
55 If REVERSE is non-nil, they are rearranged in order of descending sort key. | |
16765 | 56 The variable `sort-fold-case' determines whether alphabetic case affects |
57 the sort order. | |
70 | 58 |
59 The next four arguments are functions to be called to move point | |
60 across a sort record. They will be called many times from within sort-subr. | |
61 | |
62 NEXTRECFUN is called with point at the end of the previous record. | |
63 It moves point to the start of the next record. | |
64 It should move point to the end of the buffer if there are no more records. | |
65 The first record is assumed to start at the position of point when sort-subr | |
66 is called. | |
67 | |
1836 | 68 ENDRECFUN is called with point within the record. |
70 | 69 It should move point to the end of the record. |
70 | |
1836 | 71 STARTKEYFUN moves from the start of the record to the start of the key. |
72 It may return either a non-nil value to be used as the key, or | |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
73 else the key is the substring between the values of point after |
135 | 74 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key |
75 starts at the beginning of the record. | |
70 | 76 |
77 ENDKEYFUN moves from the start of the sort key to the end of the sort key. | |
78 ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the | |
51414
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
79 same as ENDRECFUN. |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
80 |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
81 PREDICATE is the function to use to compare keys. If keys are numbers, |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
82 it defaults to `<', otherwise it defaults to `string<'." |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
83 ;; Heuristically try to avoid messages if sorting a small amt of text. |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
84 (let ((messages (> (- (point-max) (point-min)) 50000))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
85 (save-excursion |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
86 (if messages (message "Finding sort keys...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
87 (let* ((sort-lists (sort-build-lists nextrecfun endrecfun |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
88 startkeyfun endkeyfun)) |
3409
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
89 (old (reverse sort-lists)) |
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
90 (case-fold-search sort-fold-case)) |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
91 (if (null sort-lists) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
92 () |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
93 (or reverse (setq sort-lists (nreverse sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
94 (if messages (message "Sorting records...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
95 (setq sort-lists |
51414
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
96 (sort sort-lists |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
97 (cond (predicate |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
98 `(lambda (a b) (,predicate (car a) (car b)))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
99 ((numberp (car (car sort-lists))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
100 'car-less-than-car) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
101 ((consp (car (car sort-lists))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
102 (lambda (a b) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
103 (> 0 (compare-buffer-substrings |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
104 nil (car (car a)) (cdr (car a)) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
105 nil (car (car b)) (cdr (car b)))))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
106 (t |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
107 (lambda (a b) (string< (car a) (car b))))))) |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
108 (if reverse (setq sort-lists (nreverse sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
109 (if messages (message "Reordering buffer...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
110 (sort-reorder-buffer sort-lists old))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
111 (if messages (message "Reordering buffer... Done")))) |
70 | 112 nil) |
113 | |
114 ;; Parse buffer into records using the arguments as Lisp expressions; | |
136 | 115 ;; return a list of records. Each record looks like (KEY STARTPOS . ENDPOS) |
70 | 116 ;; where KEY is the sort key (a number or string), |
117 ;; and STARTPOS and ENDPOS are the bounds of this record in the buffer. | |
118 | |
119 ;; The records appear in the list lastmost first! | |
120 | |
121 (defun sort-build-lists (nextrecfun endrecfun startkeyfun endkeyfun) | |
122 (let ((sort-lists ()) | |
123 (start-rec nil) | |
124 done key) | |
125 ;; Loop over sort records. | |
126 ;(goto-char (point-min)) -- it is the caller's responsibility to | |
127 ;arrange this if necessary | |
128 (while (not (eobp)) | |
129 (setq start-rec (point)) ;save record start | |
130 (setq done nil) | |
131 ;; Get key value, or move to start of key. | |
132 (setq key (catch 'key | |
133 (or (and startkeyfun (funcall startkeyfun)) | |
134 ;; If key was not returned as value, | |
135 ;; move to end of key and get key from the buffer. | |
136 (let ((start (point))) | |
137 (funcall (or endkeyfun | |
138 (prog1 endrecfun (setq done t)))) | |
1844
d48f094be56e
(sort-build-lists): Record the key as pair of positions;
Richard M. Stallman <rms@gnu.org>
parents:
1836
diff
changeset
|
139 (cons start (point)))))) |
70 | 140 ;; Move to end of this record (start of next one, or end of buffer). |
141 (cond ((prog1 done (setq done nil))) | |
142 (endrecfun (funcall endrecfun)) | |
143 (nextrecfun (funcall nextrecfun) (setq done t))) | |
51414
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
144 (if key (push |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
145 ;; consing optimization in case in which key is same as record. |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
146 (if (and (consp key) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
147 (equal (car key) start-rec) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
148 (equal (cdr key) (point))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
149 (cons key key) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
150 (cons key (cons start-rec (point)))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
151 sort-lists)) |
70 | 152 (and (not done) nextrecfun (funcall nextrecfun))) |
153 sort-lists)) | |
154 | |
155 (defun sort-reorder-buffer (sort-lists old) | |
42284
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
156 (let ((last (point-min)) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
157 (min (point-min)) (max (point-max)) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
158 (old-buffer (current-buffer)) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
159 temp-buffer) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
160 (with-temp-buffer |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
161 ;; Record the temporary buffer. |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
162 (setq temp-buffer (current-buffer)) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
163 |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
164 ;; Copy the sorted text into the temporary buffer. |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
165 (while sort-lists |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
166 (goto-char (point-max)) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
167 (insert-buffer-substring old-buffer |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
168 last |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
169 (nth 1 (car old))) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
170 (goto-char (point-max)) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
171 (insert-buffer-substring old-buffer |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
172 (nth 1 (car sort-lists)) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
173 (cdr (cdr (car sort-lists)))) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
174 (setq last (cdr (cdr (car old))) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
175 sort-lists (cdr sort-lists) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
176 old (cdr old))) |
70 | 177 (goto-char (point-max)) |
44521
d0c94b4f58f6
(sort-reorder-buffer): Don't assume point-min == 1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42284
diff
changeset
|
178 (insert-buffer-substring old-buffer last max) |
42284
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
179 |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
180 ;; Copy the reordered text from the temporary buffer |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
181 ;; to the buffer we sorted (OLD-BUFFER). |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
182 (set-buffer old-buffer) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
183 (let ((inhibit-quit t)) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
184 ;; Make sure insertions done for reordering |
50406
180066f315b2
(sort-reorder-buffer): Fix saving of markers at the end of the sorted region.
Juanma Barranquero <lekktu@gmail.com>
parents:
49685
diff
changeset
|
185 ;; saves any markers at the end of the sorted region, |
180066f315b2
(sort-reorder-buffer): Fix saving of markers at the end of the sorted region.
Juanma Barranquero <lekktu@gmail.com>
parents:
49685
diff
changeset
|
186 ;; by leaving the last character of the region. |
180066f315b2
(sort-reorder-buffer): Fix saving of markers at the end of the sorted region.
Juanma Barranquero <lekktu@gmail.com>
parents:
49685
diff
changeset
|
187 (delete-region min (1- max)) |
180066f315b2
(sort-reorder-buffer): Fix saving of markers at the end of the sorted region.
Juanma Barranquero <lekktu@gmail.com>
parents:
49685
diff
changeset
|
188 ;; Now replace the one remaining old character with the sorted text. |
180066f315b2
(sort-reorder-buffer): Fix saving of markers at the end of the sorted region.
Juanma Barranquero <lekktu@gmail.com>
parents:
49685
diff
changeset
|
189 (goto-char (point-min)) |
44521
d0c94b4f58f6
(sort-reorder-buffer): Don't assume point-min == 1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42284
diff
changeset
|
190 (insert-buffer-substring temp-buffer) |
50406
180066f315b2
(sort-reorder-buffer): Fix saving of markers at the end of the sorted region.
Juanma Barranquero <lekktu@gmail.com>
parents:
49685
diff
changeset
|
191 (delete-region max (1+ max)))))) |
70 | 192 |
258 | 193 ;;;###autoload |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49128
diff
changeset
|
194 (defun sort-lines (reverse beg end) |
70 | 195 "Sort lines in region alphabetically; argument means descending order. |
196 Called from a program, there are three arguments: | |
16765 | 197 REVERSE (non-nil means reverse order), BEG and END (region to sort). |
198 The variable `sort-fold-case' determines whether alphabetic case affects | |
199 the sort order." | |
70 | 200 (interactive "P\nr") |
201 (save-excursion | |
202 (save-restriction | |
203 (narrow-to-region beg end) | |
204 (goto-char (point-min)) | |
69786
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
205 (let ;; To make `end-of-line' and etc. to ignore fields. |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
206 ((inhibit-field-text-motion t)) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
207 (sort-subr reverse 'forward-line 'end-of-line))))) |
70 | 208 |
258 | 209 ;;;###autoload |
70 | 210 (defun sort-paragraphs (reverse beg end) |
211 "Sort paragraphs in region alphabetically; argument means descending order. | |
212 Called from a program, there are three arguments: | |
16765 | 213 REVERSE (non-nil means reverse order), BEG and END (region to sort). |
214 The variable `sort-fold-case' determines whether alphabetic case affects | |
215 the sort order." | |
70 | 216 (interactive "P\nr") |
217 (save-excursion | |
218 (save-restriction | |
219 (narrow-to-region beg end) | |
220 (goto-char (point-min)) | |
221 (sort-subr reverse | |
5747
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
222 (function |
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
223 (lambda () |
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
224 (while (and (not (eobp)) (looking-at paragraph-separate)) |
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
225 (forward-line 1)))) |
70 | 226 'forward-paragraph)))) |
227 | |
258 | 228 ;;;###autoload |
70 | 229 (defun sort-pages (reverse beg end) |
230 "Sort pages in region alphabetically; argument means descending order. | |
231 Called from a program, there are three arguments: | |
16765 | 232 REVERSE (non-nil means reverse order), BEG and END (region to sort). |
233 The variable `sort-fold-case' determines whether alphabetic case affects | |
234 the sort order." | |
70 | 235 (interactive "P\nr") |
236 (save-excursion | |
237 (save-restriction | |
238 (narrow-to-region beg end) | |
239 (goto-char (point-min)) | |
240 (sort-subr reverse | |
241 (function (lambda () (skip-chars-forward "\n"))) | |
242 'forward-page)))) | |
243 | |
244 (defvar sort-fields-syntax-table nil) | |
245 (if sort-fields-syntax-table nil | |
246 (let ((table (make-syntax-table)) | |
247 (i 0)) | |
248 (while (< i 256) | |
249 (modify-syntax-entry i "w" table) | |
250 (setq i (1+ i))) | |
251 (modify-syntax-entry ?\ " " table) | |
252 (modify-syntax-entry ?\t " " table) | |
253 (modify-syntax-entry ?\n " " table) | |
254 (modify-syntax-entry ?\. "_" table) ; for floating pt. numbers. -wsr | |
255 (setq sort-fields-syntax-table table))) | |
256 | |
27468
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
257 (defcustom sort-numeric-base 10 |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
258 "*The default base used by `sort-numeric-fields'." |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
259 :group 'sort |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
260 :type 'integer) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
261 |
258 | 262 ;;;###autoload |
70 | 263 (defun sort-numeric-fields (field beg end) |
264 "Sort lines in region numerically by the ARGth field of each line. | |
265 Fields are separated by whitespace and numbered from 1 up. | |
27468
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
266 Specified field must contain a number in each line of the region, |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
267 which may begin with \"0x\" or \"0\" for hexadecimal and octal values. |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
268 Otherwise, the number is interpreted according to sort-numeric-base. |
86 | 269 With a negative arg, sorts by the ARGth field counted from the right. |
70 | 270 Called from a program, there are three arguments: |
5418
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
271 FIELD, BEG and END. BEG and END specify region to sort." |
70 | 272 (interactive "p\nr") |
69786
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
273 (let ;; To make `end-of-line' and etc. to ignore fields. |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
274 ((inhibit-field-text-motion t)) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
275 (sort-fields-1 field beg end |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
276 (lambda () |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
277 (sort-skip-fields field) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
278 (let* ((case-fold-search t) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
279 (base |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
280 (if (looking-at "\\(0x\\)[0-9a-f]\\|\\(0\\)[0-7]") |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
281 (cond ((match-beginning 1) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
282 (goto-char (match-end 1)) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
283 16) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
284 ((match-beginning 2) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
285 (goto-char (match-end 2)) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
286 8) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
287 (t nil))))) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
288 (string-to-number (buffer-substring (point) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
289 (save-excursion |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
290 (forward-sexp 1) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
291 (point))) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
292 (or base sort-numeric-base)))) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
293 nil))) |
70 | 294 |
5418
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
295 ;;;;;###autoload |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
296 ;;(defun sort-float-fields (field beg end) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
297 ;; "Sort lines in region numerically by the ARGth field of each line. |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
298 ;;Fields are separated by whitespace and numbered from 1 up. Specified field |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
299 ;;must contain a floating point number in each line of the region. With a |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
300 ;;negative arg, sorts by the ARGth field counted from the right. Called from a |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
301 ;;program, there are three arguments: FIELD, BEG and END. BEG and END specify |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
302 ;;region to sort." |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
303 ;; (interactive "p\nr") |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
304 ;; (sort-fields-1 field beg end |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
305 ;; (function (lambda () |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
306 ;; (sort-skip-fields field) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
307 ;; (string-to-number |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
308 ;; (buffer-substring |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
309 ;; (point) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
310 ;; (save-excursion |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
311 ;; (re-search-forward |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
312 ;; "[+-]?[0-9]*\.?[0-9]*\\([eE][+-]?[0-9]+\\)?") |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
313 ;; (point)))))) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
314 ;; nil)) |
86 | 315 |
258 | 316 ;;;###autoload |
70 | 317 (defun sort-fields (field beg end) |
318 "Sort lines in region lexicographically by the ARGth field of each line. | |
319 Fields are separated by whitespace and numbered from 1 up. | |
86 | 320 With a negative arg, sorts by the ARGth field counted from the right. |
70 | 321 Called from a program, there are three arguments: |
16765 | 322 FIELD, BEG and END. BEG and END specify region to sort. |
323 The variable `sort-fold-case' determines whether alphabetic case affects | |
324 the sort order." | |
70 | 325 (interactive "p\nr") |
69786
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
326 (let ;; To make `end-of-line' and etc. to ignore fields. |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
327 ((inhibit-field-text-motion t)) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
328 (sort-fields-1 field beg end |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
329 (function (lambda () |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
330 (sort-skip-fields field) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
331 nil)) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
332 (function (lambda () (skip-chars-forward "^ \t\n")))))) |
70 | 333 |
334 (defun sort-fields-1 (field beg end startkeyfun endkeyfun) | |
86 | 335 (let ((tbl (syntax-table))) |
336 (if (zerop field) (setq field 1)) | |
70 | 337 (unwind-protect |
338 (save-excursion | |
339 (save-restriction | |
340 (narrow-to-region beg end) | |
341 (goto-char (point-min)) | |
342 (set-syntax-table sort-fields-syntax-table) | |
86 | 343 (sort-subr nil |
70 | 344 'forward-line 'end-of-line |
345 startkeyfun endkeyfun))) | |
346 (set-syntax-table tbl)))) | |
347 | |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
348 ;; Position at the beginning of field N on the current line, |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
349 ;; assuming point is initially at the beginning of the line. |
70 | 350 (defun sort-skip-fields (n) |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
351 (if (> n 0) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
352 ;; Skip across N - 1 fields. |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
353 (let ((i (1- n))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
354 (while (> i 0) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
355 (skip-chars-forward " \t") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
356 (skip-chars-forward "^ \t\n") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
357 (setq i (1- i))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
358 (skip-chars-forward " \t") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
359 (if (eolp) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
360 (error "Line has too few fields: %s" |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
361 (buffer-substring |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
362 (save-excursion (beginning-of-line) (point)) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
363 (save-excursion (end-of-line) (point)))))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
364 (end-of-line) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
365 ;; Skip back across - N - 1 fields. |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
366 (let ((i (1- (- n)))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
367 (while (> i 0) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
368 (skip-chars-backward " \t") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
369 (skip-chars-backward "^ \t\n") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
370 (setq i (1- i))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
371 (skip-chars-backward " \t")) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
372 (if (bolp) |
70 | 373 (error "Line has too few fields: %s" |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
374 (buffer-substring |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
375 (save-excursion (beginning-of-line) (point)) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
376 (save-excursion (end-of-line) (point))))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
377 ;; Position at the front of the field |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
378 ;; even if moving backwards. |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
379 (skip-chars-backward "^ \t\n"))) |
70 | 380 |
10763
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
381 (defvar sort-regexp-fields-regexp) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
382 (defvar sort-regexp-record-end) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
383 |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
384 ;; Move to the beginning of the next match for record-regexp, |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
385 ;; and set sort-regexp-record-end to the end of that match. |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
386 ;; If the next match is empty and does not advance point, |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
387 ;; skip one character and try again. |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
388 (defun sort-regexp-fields-next-record () |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
389 (let ((oldpos (point))) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
390 (and (re-search-forward sort-regexp-fields-regexp nil 'move) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
391 (setq sort-regexp-record-end (match-end 0)) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
392 (if (= sort-regexp-record-end oldpos) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
393 (progn |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
394 (forward-char 1) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
395 (re-search-forward sort-regexp-fields-regexp nil 'move) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
396 (setq sort-regexp-record-end (match-end 0))) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
397 t) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
398 (goto-char (match-beginning 0))))) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
399 |
258 | 400 ;;;###autoload |
70 | 401 (defun sort-regexp-fields (reverse record-regexp key-regexp beg end) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3409
diff
changeset
|
402 "Sort the region lexicographically as specified by RECORD-REGEXP and KEY. |
70 | 403 RECORD-REGEXP specifies the textual units which should be sorted. |
404 For example, to sort lines RECORD-REGEXP would be \"^.*$\" | |
405 KEY specifies the part of each record (ie each match for RECORD-REGEXP) | |
406 is to be used for sorting. | |
13643
146c5daf3019
(sort-regexp-fields): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
407 If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from |
70 | 408 RECORD-REGEXP is used. |
13643
146c5daf3019
(sort-regexp-fields): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
409 If it is \"\\\\&\" then the whole record is used. |
70 | 410 Otherwise, it is a regular-expression for which to search within the record. |
411 If a match for KEY is not found within a record then that record is ignored. | |
412 | |
413 With a negative prefix arg sorts in reverse order. | |
414 | |
16765 | 415 The variable `sort-fold-case' determines whether alphabetic case affects |
416 the sort order. | |
417 | |
70 | 418 For example: to sort lines in the region by the first word on each line |
419 starting with the letter \"f\", | |
13643
146c5daf3019
(sort-regexp-fields): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
420 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"" |
86 | 421 ;; using negative prefix arg to mean "reverse" is now inconsistent with |
422 ;; other sort-.*fields functions but then again this was before, since it | |
423 ;; didn't use the magnitude of the arg to specify anything. | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49128
diff
changeset
|
424 (interactive "P\nsRegexp specifying records to sort: |
70 | 425 sRegexp specifying key within record: \nr") |
426 (cond ((or (equal key-regexp "") (equal key-regexp "\\&")) | |
427 (setq key-regexp 0)) | |
428 ((string-match "\\`\\\\[1-9]\\'" key-regexp) | |
429 (setq key-regexp (- (aref key-regexp 1) ?0)))) | |
430 (save-excursion | |
431 (save-restriction | |
432 (narrow-to-region beg end) | |
433 (goto-char (point-min)) | |
10763
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
434 (let (sort-regexp-record-end |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
435 (sort-regexp-fields-regexp record-regexp)) |
49128
93b43f689e56
(sort-regexp-fields): pass noerror to
Karl Berry <karl@gnu.org>
parents:
44521
diff
changeset
|
436 (re-search-forward sort-regexp-fields-regexp nil t) |
70 | 437 (setq sort-regexp-record-end (point)) |
438 (goto-char (match-beginning 0)) | |
439 (sort-subr reverse | |
10763
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
440 'sort-regexp-fields-next-record |
70 | 441 (function (lambda () |
442 (goto-char sort-regexp-record-end))) | |
443 (function (lambda () | |
444 (let ((n 0)) | |
445 (cond ((numberp key-regexp) | |
446 (setq n key-regexp)) | |
447 ((re-search-forward | |
448 key-regexp sort-regexp-record-end t) | |
449 (setq n 0)) | |
450 (t (throw 'key nil))) | |
451 (condition-case () | |
16765 | 452 (cons (match-beginning n) |
453 (match-end n)) | |
70 | 454 ;; if there was no such register |
455 (error (throw 'key nil))))))))))) | |
456 | |
457 | |
458 (defvar sort-columns-subprocess t) | |
459 | |
258 | 460 ;;;###autoload |
70 | 461 (defun sort-columns (reverse &optional beg end) |
462 "Sort lines in region alphabetically by a certain range of columns. | |
33993
d38d6c74805d
(sort-columns): Don't concat strings with numbers.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33555
diff
changeset
|
463 For the purpose of this command, the region BEG...END includes |
70 | 464 the entire line that point is in and the entire line the mark is in. |
465 The column positions of point and mark bound the range of columns to sort on. | |
33993
d38d6c74805d
(sort-columns): Don't concat strings with numbers.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33555
diff
changeset
|
466 A prefix argument means sort into REVERSE order. |
16765 | 467 The variable `sort-fold-case' determines whether alphabetic case affects |
468 the sort order. | |
70 | 469 |
470 Note that `sort-columns' rejects text that contains tabs, | |
471 because tabs could be split across the specified columns | |
472 and it doesn't know how to handle that. Also, when possible, | |
473 it uses the `sort' utility program, which doesn't understand tabs. | |
474 Use \\[untabify] to convert tabs to spaces before sorting." | |
475 (interactive "P\nr") | |
476 (save-excursion | |
69786
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
477 (let ;; To make `end-of-line' and etc. to ignore fields. |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
478 ((inhibit-field-text-motion t) |
734f4a4c96e2
(sort-build-lists): Don't bind inhibit-field-text-motion
Kenichi Handa <handa@m17n.org>
parents:
69528
diff
changeset
|
479 beg1 end1 col-beg1 col-end1 col-start col-end) |
70 | 480 (goto-char (min beg end)) |
481 (setq col-beg1 (current-column)) | |
482 (beginning-of-line) | |
483 (setq beg1 (point)) | |
484 (goto-char (max beg end)) | |
485 (setq col-end1 (current-column)) | |
486 (forward-line) | |
487 (setq end1 (point)) | |
488 (setq col-start (min col-beg1 col-end1)) | |
489 (setq col-end (max col-beg1 col-end1)) | |
490 (if (search-backward "\t" beg1 t) | |
34601
5ca359ff87e6
(sort-columns): Fix error message.
Gerd Moellmann <gerd@gnu.org>
parents:
33993
diff
changeset
|
491 (error "sort-columns does not work with tabs -- use M-x untabify")) |
54297
53aea6ea5ce9
(sort-columns): Remove ms-dos from the list of systems
Eli Zaretskii <eliz@gnu.org>
parents:
54284
diff
changeset
|
492 (if (not (or (memq system-type '(vax-vms windows-nt)) |
54284
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
493 (let ((pos beg1) plist fontified) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
494 (catch 'found |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
495 (while (< pos end1) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
496 (setq plist (text-properties-at pos)) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
497 (setq fontified (plist-get plist 'fontified)) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
498 (while (consp plist) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
499 (unless (or (eq (car plist) 'fontified) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
500 (and (eq (car plist) 'face) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
501 fontified)) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
502 (throw 'found t)) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
503 (setq plist (cddr plist))) |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
504 (setq pos (next-property-change pos nil end1))))))) |
70 | 505 ;; Use the sort utility if we can; it is 4 times as fast. |
54284
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
506 ;; Do not use it if there are any non-font-lock properties |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
507 ;; in the region, since the sort utility would lose the |
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
508 ;; properties. |
33555
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
509 (let ((sort-args (list (if reverse "-rt\n" "-t\n") |
69079
68ba98572eb9
(sort-columns): Use Posix arg syntax for `sort'.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
510 (format "-k1.%d,1.%d" |
68ba98572eb9
(sort-columns): Use Posix arg syntax for `sort'.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
511 (1+ col-start) |
68ba98572eb9
(sort-columns): Use Posix arg syntax for `sort'.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
512 (1+ col-end))))) |
33555
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
513 (when sort-fold-case |
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
514 (push "-f" sort-args)) |
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
515 (apply #'call-process-region beg1 end1 "sort" t t nil sort-args)) |
54284
78ded7186c4e
(sort-columns): Don't use external 'sort' on ms-windows. Otherwise,
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
516 ;; On VMS and ms-windows, use Emacs's own facilities. |
70 | 517 (save-excursion |
518 (save-restriction | |
519 (narrow-to-region beg1 end1) | |
520 (goto-char beg1) | |
521 (sort-subr reverse 'forward-line 'end-of-line | |
33555
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
522 #'(lambda () (move-to-column col-start) nil) |
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
523 #'(lambda () (move-to-column col-end) nil)))))))) |
86 | 524 |
258 | 525 ;;;###autoload |
86 | 526 (defun reverse-region (beg end) |
527 "Reverse the order of lines in a region. | |
528 From a program takes two point or marker arguments, BEG and END." | |
529 (interactive "r") | |
530 (if (> beg end) | |
531 (let (mid) (setq mid end end beg beg mid))) | |
532 (save-excursion | |
533 ;; put beg at the start of a line and end and the end of one -- | |
534 ;; the largest possible region which fits this criteria | |
535 (goto-char beg) | |
536 (or (bolp) (forward-line 1)) | |
537 (setq beg (point)) | |
538 (goto-char end) | |
539 ;; the test for bolp is for those times when end is on an empty line; | |
540 ;; it is probably not the case that the line should be included in the | |
541 ;; reversal; it isn't difficult to add it afterward. | |
542 (or (and (eolp) (not (bolp))) (progn (forward-line -1) (end-of-line))) | |
543 (setq end (point-marker)) | |
544 ;; the real work. this thing cranks through memory on large regions. | |
545 (let (ll (do t)) | |
546 (while do | |
547 (goto-char beg) | |
548 (setq ll (cons (buffer-substring (point) (progn (end-of-line) (point))) | |
549 ll)) | |
550 (setq do (/= (point) end)) | |
551 (delete-region beg (if do (1+ (point)) (point)))) | |
552 (while (cdr ll) | |
553 (insert (car ll) "\n") | |
554 (setq ll (cdr ll))) | |
555 (insert (car ll))))) | |
584 | 556 |
557 (provide 'sort) | |
558 | |
52401 | 559 ;;; arch-tag: fbac12be-2a7b-4c8a-9665-264d61f70bd9 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
560 ;;; sort.el ends here |