Mercurial > emacs
annotate lisp/sort.el @ 40819:668787248f9b
* dired.el (dired-move-to-filename-regexp):
Do not distinguish between ASCII letters and non-ASCII characters.
Don't allow comma except in the form "month day, year".
Don't allow space between month name and comma.
Clean up the code that checks for trailing period, comma, and space.
Remove now-obsolete comments, and add more commentary about
Japanese dates.
Always gobble up trailing spaces, instead of doing it only sometimes.
author | Paul Eggert <eggert@twinsun.com> |
---|---|
date | Wed, 07 Nov 2001 21:59:39 +0000 |
parents | 253f761ad37b |
children | b8c51fd416a8 |
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 |
11235 | 3 ;; Copyright (C) 1986, 1987, 1994, 1995 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 Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN. | |
46 | |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
47 We divide the accessible portion of the buffer into disjoint pieces |
998 | 48 called sort records. A portion of each sort record (perhaps all of |
49 it) is designated as the sort key. The records are rearranged in the | |
50 buffer in order by their sort keys. The records may or may not be | |
51 contiguous. | |
70 | 52 |
53 Usually the records are rearranged in order of ascending sort key. | |
54 If REVERSE is non-nil, they are rearranged in order of descending sort key. | |
16765 | 55 The variable `sort-fold-case' determines whether alphabetic case affects |
56 the sort order. | |
70 | 57 |
58 The next four arguments are functions to be called to move point | |
59 across a sort record. They will be called many times from within sort-subr. | |
60 | |
61 NEXTRECFUN is called with point at the end of the previous record. | |
62 It moves point to the start of the next record. | |
63 It should move point to the end of the buffer if there are no more records. | |
64 The first record is assumed to start at the position of point when sort-subr | |
65 is called. | |
66 | |
1836 | 67 ENDRECFUN is called with point within the record. |
70 | 68 It should move point to the end of the record. |
69 | |
1836 | 70 STARTKEYFUN moves from the start of the record to the start of the key. |
71 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
|
72 else the key is the substring between the values of point after |
135 | 73 STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key |
74 starts at the beginning of the record. | |
70 | 75 |
76 ENDKEYFUN moves from the start of the sort key to the end of the sort key. | |
77 ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the | |
78 same as ENDRECFUN." | |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
79 ;; 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
|
80 (let ((messages (> (- (point-max) (point-min)) 50000))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
81 (save-excursion |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
82 (if messages (message "Finding sort keys...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
83 (let* ((sort-lists (sort-build-lists nextrecfun endrecfun |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
84 startkeyfun endkeyfun)) |
3409
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
85 (old (reverse sort-lists)) |
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
86 (case-fold-search sort-fold-case)) |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
87 (if (null sort-lists) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
88 () |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
89 (or reverse (setq sort-lists (nreverse sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
90 (if messages (message "Sorting records...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
91 (setq sort-lists |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
92 (if (fboundp 'sortcar) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
93 (sortcar sort-lists |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
94 (cond ((numberp (car (car sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
95 ;; This handles both ints and floats. |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
96 '<) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
97 ((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
|
98 (function |
d48f094be56e
(sort-build-lists): Record the key as pair of positions;
Richard M. Stallman <rms@gnu.org>
parents:
1836
diff
changeset
|
99 (lambda (a b) |
d48f094be56e
(sort-build-lists): Record the key as pair of positions;
Richard M. Stallman <rms@gnu.org>
parents:
1836
diff
changeset
|
100 (> 0 (compare-buffer-substrings |
1845
aeb1a834481b
(sort-subr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1844
diff
changeset
|
101 nil (car a) (cdr a) |
aeb1a834481b
(sort-subr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1844
diff
changeset
|
102 nil (car b) (cdr b)))))) |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
103 (t |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
104 'string<))) |
998 | 105 (sort sort-lists |
106 (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
|
107 'car-less-than-car) |
998 | 108 ((consp (car (car sort-lists))) |
109 (function | |
110 (lambda (a b) | |
1844
d48f094be56e
(sort-build-lists): Record the key as pair of positions;
Richard M. Stallman <rms@gnu.org>
parents:
1836
diff
changeset
|
111 (> 0 (compare-buffer-substrings |
1845
aeb1a834481b
(sort-subr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1844
diff
changeset
|
112 nil (car (car a)) (cdr (car a)) |
aeb1a834481b
(sort-subr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1844
diff
changeset
|
113 nil (car (car b)) (cdr (car b))))))) |
998 | 114 (t |
115 (function | |
116 (lambda (a b) | |
117 (string< (car a) (car b))))))))) | |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
118 (if reverse (setq sort-lists (nreverse sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
119 (if messages (message "Reordering buffer...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
120 (sort-reorder-buffer sort-lists old))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
121 (if messages (message "Reordering buffer... Done")))) |
70 | 122 nil) |
123 | |
124 ;; Parse buffer into records using the arguments as Lisp expressions; | |
136 | 125 ;; return a list of records. Each record looks like (KEY STARTPOS . ENDPOS) |
70 | 126 ;; where KEY is the sort key (a number or string), |
127 ;; and STARTPOS and ENDPOS are the bounds of this record in the buffer. | |
128 | |
129 ;; The records appear in the list lastmost first! | |
130 | |
131 (defun sort-build-lists (nextrecfun endrecfun startkeyfun endkeyfun) | |
132 (let ((sort-lists ()) | |
133 (start-rec nil) | |
134 done key) | |
135 ;; Loop over sort records. | |
136 ;(goto-char (point-min)) -- it is the caller's responsibility to | |
137 ;arrange this if necessary | |
138 (while (not (eobp)) | |
139 (setq start-rec (point)) ;save record start | |
140 (setq done nil) | |
141 ;; Get key value, or move to start of key. | |
142 (setq key (catch 'key | |
143 (or (and startkeyfun (funcall startkeyfun)) | |
144 ;; If key was not returned as value, | |
145 ;; move to end of key and get key from the buffer. | |
146 (let ((start (point))) | |
147 (funcall (or endkeyfun | |
148 (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
|
149 (cons start (point)))))) |
70 | 150 ;; Move to end of this record (start of next one, or end of buffer). |
151 (cond ((prog1 done (setq done nil))) | |
152 (endrecfun (funcall endrecfun)) | |
153 (nextrecfun (funcall nextrecfun) (setq done t))) | |
154 (if key (setq sort-lists (cons | |
155 ;; consing optimization in case in which key | |
156 ;; is same as record. | |
157 (if (and (consp key) | |
158 (equal (car key) start-rec) | |
159 (equal (cdr key) (point))) | |
160 (cons key key) | |
135 | 161 (cons key (cons start-rec (point)))) |
162 sort-lists))) | |
70 | 163 (and (not done) nextrecfun (funcall nextrecfun))) |
164 sort-lists)) | |
165 | |
166 (defun sort-reorder-buffer (sort-lists old) | |
167 (let ((inhibit-quit t) | |
168 (last (point-min)) | |
169 (min (point-min)) (max (point-max))) | |
170 ;; Make sure insertions done for reordering | |
171 ;; do not go after any markers at the end of the sorted region, | |
172 ;; by inserting a space to separate them. | |
173 (goto-char (point-max)) | |
174 (insert-before-markers " ") | |
175 (narrow-to-region min (1- (point-max))) | |
176 (while sort-lists | |
177 (goto-char (point-max)) | |
178 (insert-buffer-substring (current-buffer) | |
179 last | |
180 (nth 1 (car old))) | |
181 (goto-char (point-max)) | |
182 (insert-buffer-substring (current-buffer) | |
183 (nth 1 (car sort-lists)) | |
135 | 184 (cdr (cdr (car sort-lists)))) |
185 (setq last (cdr (cdr (car old))) | |
70 | 186 sort-lists (cdr sort-lists) |
187 old (cdr old))) | |
188 (goto-char (point-max)) | |
189 (insert-buffer-substring (current-buffer) | |
190 last | |
191 max) | |
192 ;; Delete the original copy of the text. | |
193 (delete-region min max) | |
194 ;; Get rid of the separator " ". | |
195 (goto-char (point-max)) | |
196 (narrow-to-region min (1+ (point))) | |
197 (delete-region (point) (1+ (point))))) | |
198 | |
258 | 199 ;;;###autoload |
70 | 200 (defun sort-lines (reverse beg end) |
201 "Sort lines in region alphabetically; argument means descending order. | |
202 Called from a program, there are three arguments: | |
16765 | 203 REVERSE (non-nil means reverse order), BEG and END (region to sort). |
204 The variable `sort-fold-case' determines whether alphabetic case affects | |
205 the sort order." | |
70 | 206 (interactive "P\nr") |
207 (save-excursion | |
208 (save-restriction | |
209 (narrow-to-region beg end) | |
210 (goto-char (point-min)) | |
211 (sort-subr reverse 'forward-line 'end-of-line)))) | |
212 | |
258 | 213 ;;;###autoload |
70 | 214 (defun sort-paragraphs (reverse beg end) |
215 "Sort paragraphs in region alphabetically; argument means descending order. | |
216 Called from a program, there are three arguments: | |
16765 | 217 REVERSE (non-nil means reverse order), BEG and END (region to sort). |
218 The variable `sort-fold-case' determines whether alphabetic case affects | |
219 the sort order." | |
70 | 220 (interactive "P\nr") |
221 (save-excursion | |
222 (save-restriction | |
223 (narrow-to-region beg end) | |
224 (goto-char (point-min)) | |
225 (sort-subr reverse | |
5747
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
226 (function |
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
227 (lambda () |
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
228 (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
|
229 (forward-line 1)))) |
70 | 230 'forward-paragraph)))) |
231 | |
258 | 232 ;;;###autoload |
70 | 233 (defun sort-pages (reverse beg end) |
234 "Sort pages in region alphabetically; argument means descending order. | |
235 Called from a program, there are three arguments: | |
16765 | 236 REVERSE (non-nil means reverse order), BEG and END (region to sort). |
237 The variable `sort-fold-case' determines whether alphabetic case affects | |
238 the sort order." | |
70 | 239 (interactive "P\nr") |
240 (save-excursion | |
241 (save-restriction | |
242 (narrow-to-region beg end) | |
243 (goto-char (point-min)) | |
244 (sort-subr reverse | |
245 (function (lambda () (skip-chars-forward "\n"))) | |
246 'forward-page)))) | |
247 | |
248 (defvar sort-fields-syntax-table nil) | |
249 (if sort-fields-syntax-table nil | |
250 (let ((table (make-syntax-table)) | |
251 (i 0)) | |
252 (while (< i 256) | |
253 (modify-syntax-entry i "w" table) | |
254 (setq i (1+ i))) | |
255 (modify-syntax-entry ?\ " " table) | |
256 (modify-syntax-entry ?\t " " table) | |
257 (modify-syntax-entry ?\n " " table) | |
258 (modify-syntax-entry ?\. "_" table) ; for floating pt. numbers. -wsr | |
259 (setq sort-fields-syntax-table table))) | |
260 | |
27468
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
261 (defcustom sort-numeric-base 10 |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
262 "*The default base used by `sort-numeric-fields'." |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
263 :group 'sort |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
264 :type 'integer) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
265 |
258 | 266 ;;;###autoload |
70 | 267 (defun sort-numeric-fields (field beg end) |
268 "Sort lines in region numerically by the ARGth field of each line. | |
269 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
|
270 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
|
271 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
|
272 Otherwise, the number is interpreted according to sort-numeric-base. |
86 | 273 With a negative arg, sorts by the ARGth field counted from the right. |
70 | 274 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
|
275 FIELD, BEG and END. BEG and END specify region to sort." |
70 | 276 (interactive "p\nr") |
277 (sort-fields-1 field beg end | |
27468
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
278 (lambda () |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
279 (sort-skip-fields field) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
280 (let* ((case-fold-search t) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
281 (base |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
282 (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
|
283 (cond ((match-beginning 1) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
284 (goto-char (match-end 1)) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
285 16) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
286 ((match-beginning 2) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
287 (goto-char (match-end 2)) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
288 8) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
289 (t nil))))) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
290 (string-to-number (buffer-substring (point) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
291 (save-excursion |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
292 (forward-sexp 1) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
293 (point))) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
294 (or base sort-numeric-base)))) |
70 | 295 nil)) |
296 | |
5418
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
297 ;;;;;###autoload |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
298 ;;(defun sort-float-fields (field beg end) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
299 ;; "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
|
300 ;;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
|
301 ;;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
|
302 ;;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
|
303 ;;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
|
304 ;;region to sort." |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
305 ;; (interactive "p\nr") |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
306 ;; (sort-fields-1 field beg end |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
307 ;; (function (lambda () |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
308 ;; (sort-skip-fields field) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
309 ;; (string-to-number |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
310 ;; (buffer-substring |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
311 ;; (point) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
312 ;; (save-excursion |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
313 ;; (re-search-forward |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
314 ;; "[+-]?[0-9]*\.?[0-9]*\\([eE][+-]?[0-9]+\\)?") |
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 ;; nil)) |
86 | 317 |
258 | 318 ;;;###autoload |
70 | 319 (defun sort-fields (field beg end) |
320 "Sort lines in region lexicographically by the ARGth field of each line. | |
321 Fields are separated by whitespace and numbered from 1 up. | |
86 | 322 With a negative arg, sorts by the ARGth field counted from the right. |
70 | 323 Called from a program, there are three arguments: |
16765 | 324 FIELD, BEG and END. BEG and END specify region to sort. |
325 The variable `sort-fold-case' determines whether alphabetic case affects | |
326 the sort order." | |
70 | 327 (interactive "p\nr") |
328 (sort-fields-1 field beg end | |
329 (function (lambda () | |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
330 (sort-skip-fields field) |
70 | 331 nil)) |
332 (function (lambda () (skip-chars-forward "^ \t\n"))))) | |
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. | |
70 | 424 (interactive "P\nsRegexp specifying records to sort: |
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)) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
436 (re-search-forward sort-regexp-fields-regexp) |
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 | |
477 (let (beg1 end1 col-beg1 col-end1 col-start col-end) | |
478 (goto-char (min beg end)) | |
479 (setq col-beg1 (current-column)) | |
480 (beginning-of-line) | |
481 (setq beg1 (point)) | |
482 (goto-char (max beg end)) | |
483 (setq col-end1 (current-column)) | |
484 (forward-line) | |
485 (setq end1 (point)) | |
486 (setq col-start (min col-beg1 col-end1)) | |
487 (setq col-end (max col-beg1 col-end1)) | |
488 (if (search-backward "\t" beg1 t) | |
34601
5ca359ff87e6
(sort-columns): Fix error message.
Gerd Moellmann <gerd@gnu.org>
parents:
33993
diff
changeset
|
489 (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
|
490 (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
|
491 (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
|
492 (< (next-property-change beg1 nil end1) end1))) |
70 | 493 ;; 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
|
494 ;; 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
|
495 ;; 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
|
496 (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
|
497 (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
|
498 (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
|
499 (when sort-fold-case |
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
500 (push "-f" sort-args)) |
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
501 (apply #'call-process-region beg1 end1 "sort" t t nil sort-args)) |
70 | 502 ;; On VMS, use Emacs's own facilities. |
503 (save-excursion | |
504 (save-restriction | |
505 (narrow-to-region beg1 end1) | |
506 (goto-char beg1) | |
507 (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
|
508 #'(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
|
509 #'(lambda () (move-to-column col-end) nil)))))))) |
86 | 510 |
258 | 511 ;;;###autoload |
86 | 512 (defun reverse-region (beg end) |
513 "Reverse the order of lines in a region. | |
514 From a program takes two point or marker arguments, BEG and END." | |
515 (interactive "r") | |
516 (if (> beg end) | |
517 (let (mid) (setq mid end end beg beg mid))) | |
518 (save-excursion | |
519 ;; put beg at the start of a line and end and the end of one -- | |
520 ;; the largest possible region which fits this criteria | |
521 (goto-char beg) | |
522 (or (bolp) (forward-line 1)) | |
523 (setq beg (point)) | |
524 (goto-char end) | |
525 ;; the test for bolp is for those times when end is on an empty line; | |
526 ;; it is probably not the case that the line should be included in the | |
527 ;; reversal; it isn't difficult to add it afterward. | |
528 (or (and (eolp) (not (bolp))) (progn (forward-line -1) (end-of-line))) | |
529 (setq end (point-marker)) | |
530 ;; the real work. this thing cranks through memory on large regions. | |
531 (let (ll (do t)) | |
532 (while do | |
533 (goto-char beg) | |
534 (setq ll (cons (buffer-substring (point) (progn (end-of-line) (point))) | |
535 ll)) | |
536 (setq do (/= (point) end)) | |
537 (delete-region beg (if do (1+ (point)) (point)))) | |
538 (while (cdr ll) | |
539 (insert (car ll) "\n") | |
540 (setq ll (cdr ll))) | |
541 (insert (car ll))))) | |
584 | 542 |
543 (provide 'sort) | |
544 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
545 ;;; sort.el ends here |