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