Mercurial > emacs
annotate lisp/sort.el @ 52184:2d0c2b7dbf3f
ebnf-no-meta-identifier ==> var instead constant.
author | Vinicius Jose Latorre <viniciusjl@ig.com.br> |
---|---|
date | Wed, 13 Aug 2003 00:37:24 +0000 |
parents | bcc01b458b48 |
children | 695cf19ef79e |
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 |
51414
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
43 (defun sort-subr (reverse nextrecfun endrecfun |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
44 &optional startkeyfun endkeyfun predicate) |
70 | 45 "General text sorting routine to divide buffer into records and sort them. |
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 | |
51414
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
78 same as ENDRECFUN. |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
79 |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
80 PREDICATE is the function to use to compare keys. If keys are numbers, |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
81 it defaults to `<', otherwise it defaults to `string<'." |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
82 ;; 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
|
83 (let ((messages (> (- (point-max) (point-min)) 50000))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
84 (save-excursion |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
85 (if messages (message "Finding sort keys...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
86 (let* ((sort-lists (sort-build-lists nextrecfun endrecfun |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
87 startkeyfun endkeyfun)) |
3409
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
88 (old (reverse sort-lists)) |
09bba81c038f
(sort-fold-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
89 (case-fold-search sort-fold-case)) |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
90 (if (null sort-lists) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
91 () |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
92 (or reverse (setq sort-lists (nreverse sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
93 (if messages (message "Sorting records...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
94 (setq sort-lists |
51414
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
95 (sort sort-lists |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
96 (cond (predicate |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
97 `(lambda (a b) (,predicate (car a) (car b)))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
98 ((numberp (car (car sort-lists))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
99 'car-less-than-car) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
100 ((consp (car (car sort-lists))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
101 (lambda (a b) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
102 (> 0 (compare-buffer-substrings |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
103 nil (car (car a)) (cdr (car a)) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
104 nil (car (car b)) (cdr (car b)))))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
105 (t |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
106 (lambda (a b) (string< (car a) (car b))))))) |
996
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
107 (if reverse (setq sort-lists (nreverse sort-lists))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
108 (if messages (message "Reordering buffer...")) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
109 (sort-reorder-buffer sort-lists old))) |
0e8ace07a231
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
840
diff
changeset
|
110 (if messages (message "Reordering buffer... Done")))) |
70 | 111 nil) |
112 | |
113 ;; Parse buffer into records using the arguments as Lisp expressions; | |
136 | 114 ;; return a list of records. Each record looks like (KEY STARTPOS . ENDPOS) |
70 | 115 ;; where KEY is the sort key (a number or string), |
116 ;; and STARTPOS and ENDPOS are the bounds of this record in the buffer. | |
117 | |
118 ;; The records appear in the list lastmost first! | |
119 | |
120 (defun sort-build-lists (nextrecfun endrecfun startkeyfun endkeyfun) | |
121 (let ((sort-lists ()) | |
122 (start-rec nil) | |
123 done key) | |
124 ;; Loop over sort records. | |
125 ;(goto-char (point-min)) -- it is the caller's responsibility to | |
126 ;arrange this if necessary | |
127 (while (not (eobp)) | |
128 (setq start-rec (point)) ;save record start | |
129 (setq done nil) | |
130 ;; Get key value, or move to start of key. | |
131 (setq key (catch 'key | |
132 (or (and startkeyfun (funcall startkeyfun)) | |
133 ;; If key was not returned as value, | |
134 ;; move to end of key and get key from the buffer. | |
135 (let ((start (point))) | |
136 (funcall (or endkeyfun | |
137 (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
|
138 (cons start (point)))))) |
70 | 139 ;; Move to end of this record (start of next one, or end of buffer). |
140 (cond ((prog1 done (setq done nil))) | |
141 (endrecfun (funcall endrecfun)) | |
142 (nextrecfun (funcall nextrecfun) (setq done t))) | |
51414
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
143 (if key (push |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
144 ;; consing optimization in case in which key is same as record. |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
145 (if (and (consp key) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
146 (equal (car key) start-rec) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
147 (equal (cdr key) (point))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
148 (cons key key) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
149 (cons key (cons start-rec (point)))) |
bcc01b458b48
(sort-subr): Add `predicate' arg. Remove `sortcar' code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50406
diff
changeset
|
150 sort-lists)) |
70 | 151 (and (not done) nextrecfun (funcall nextrecfun))) |
152 sort-lists)) | |
153 | |
154 (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
|
155 (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
|
156 (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
|
157 (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
|
158 temp-buffer) |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
159 (with-temp-buffer |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
160 ;; 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
|
161 (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
|
162 |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
163 ;; 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
|
164 (while sort-lists |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
165 (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
|
166 (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
|
167 last |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
168 (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
|
169 (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
|
170 (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
|
171 (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
|
172 (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
|
173 (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
|
174 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
|
175 old (cdr old))) |
70 | 176 (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
|
177 (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
|
178 |
b8c51fd416a8
(sort-reorder-buffer): Copy all to a temp buffer first.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
179 ;; 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
|
180 ;; 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
|
181 (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
|
182 (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
|
183 ;; 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
|
184 ;; 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
|
185 ;; 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
|
186 (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
|
187 ;; 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
|
188 (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
|
189 (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
|
190 (delete-region max (1+ max)))))) |
70 | 191 |
258 | 192 ;;;###autoload |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49128
diff
changeset
|
193 (defun sort-lines (reverse beg end) |
70 | 194 "Sort lines in region alphabetically; argument means descending order. |
195 Called from a program, there are three arguments: | |
16765 | 196 REVERSE (non-nil means reverse order), BEG and END (region to sort). |
197 The variable `sort-fold-case' determines whether alphabetic case affects | |
198 the sort order." | |
70 | 199 (interactive "P\nr") |
200 (save-excursion | |
201 (save-restriction | |
202 (narrow-to-region beg end) | |
203 (goto-char (point-min)) | |
204 (sort-subr reverse 'forward-line 'end-of-line)))) | |
205 | |
258 | 206 ;;;###autoload |
70 | 207 (defun sort-paragraphs (reverse beg end) |
208 "Sort paragraphs in region alphabetically; argument means descending order. | |
209 Called from a program, there are three arguments: | |
16765 | 210 REVERSE (non-nil means reverse order), BEG and END (region to sort). |
211 The variable `sort-fold-case' determines whether alphabetic case affects | |
212 the sort order." | |
70 | 213 (interactive "P\nr") |
214 (save-excursion | |
215 (save-restriction | |
216 (narrow-to-region beg end) | |
217 (goto-char (point-min)) | |
218 (sort-subr reverse | |
5747
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
219 (function |
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
220 (lambda () |
cbd0de32e997
(sort-paragraphs): Use proper paragraph definition instead of just checking
Karl Heuer <kwzh@gnu.org>
parents:
5418
diff
changeset
|
221 (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
|
222 (forward-line 1)))) |
70 | 223 'forward-paragraph)))) |
224 | |
258 | 225 ;;;###autoload |
70 | 226 (defun sort-pages (reverse beg end) |
227 "Sort pages in region alphabetically; argument means descending order. | |
228 Called from a program, there are three arguments: | |
16765 | 229 REVERSE (non-nil means reverse order), BEG and END (region to sort). |
230 The variable `sort-fold-case' determines whether alphabetic case affects | |
231 the sort order." | |
70 | 232 (interactive "P\nr") |
233 (save-excursion | |
234 (save-restriction | |
235 (narrow-to-region beg end) | |
236 (goto-char (point-min)) | |
237 (sort-subr reverse | |
238 (function (lambda () (skip-chars-forward "\n"))) | |
239 'forward-page)))) | |
240 | |
241 (defvar sort-fields-syntax-table nil) | |
242 (if sort-fields-syntax-table nil | |
243 (let ((table (make-syntax-table)) | |
244 (i 0)) | |
245 (while (< i 256) | |
246 (modify-syntax-entry i "w" table) | |
247 (setq i (1+ i))) | |
248 (modify-syntax-entry ?\ " " table) | |
249 (modify-syntax-entry ?\t " " table) | |
250 (modify-syntax-entry ?\n " " table) | |
251 (modify-syntax-entry ?\. "_" table) ; for floating pt. numbers. -wsr | |
252 (setq sort-fields-syntax-table table))) | |
253 | |
27468
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
254 (defcustom sort-numeric-base 10 |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
255 "*The default base used by `sort-numeric-fields'." |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
256 :group 'sort |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
257 :type 'integer) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
258 |
258 | 259 ;;;###autoload |
70 | 260 (defun sort-numeric-fields (field beg end) |
261 "Sort lines in region numerically by the ARGth field of each line. | |
262 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
|
263 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
|
264 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
|
265 Otherwise, the number is interpreted according to sort-numeric-base. |
86 | 266 With a negative arg, sorts by the ARGth field counted from the right. |
70 | 267 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
|
268 FIELD, BEG and END. BEG and END specify region to sort." |
70 | 269 (interactive "p\nr") |
270 (sort-fields-1 field beg end | |
27468
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
271 (lambda () |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
272 (sort-skip-fields field) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
273 (let* ((case-fold-search t) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
274 (base |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
275 (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
|
276 (cond ((match-beginning 1) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
277 (goto-char (match-end 1)) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
278 16) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
279 ((match-beginning 2) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
280 (goto-char (match-end 2)) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
281 8) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
282 (t nil))))) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
283 (string-to-number (buffer-substring (point) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
284 (save-excursion |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
285 (forward-sexp 1) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
286 (point))) |
8a6ee5b485d2
(sort-numeric-base): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
19418
diff
changeset
|
287 (or base sort-numeric-base)))) |
70 | 288 nil)) |
289 | |
5418
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
290 ;;;;;###autoload |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
291 ;;(defun sort-float-fields (field beg end) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
292 ;; "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
|
293 ;;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
|
294 ;;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
|
295 ;;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
|
296 ;;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
|
297 ;;region to sort." |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
298 ;; (interactive "p\nr") |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
299 ;; (sort-fields-1 field beg end |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
300 ;; (function (lambda () |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
301 ;; (sort-skip-fields field) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
302 ;; (string-to-number |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
303 ;; (buffer-substring |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
304 ;; (point) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
305 ;; (save-excursion |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
306 ;; (re-search-forward |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
307 ;; "[+-]?[0-9]*\.?[0-9]*\\([eE][+-]?[0-9]+\\)?") |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
308 ;; (point)))))) |
6eb86cda3856
(sort-float-fields): Commented out.
Richard M. Stallman <rms@gnu.org>
parents:
4247
diff
changeset
|
309 ;; nil)) |
86 | 310 |
258 | 311 ;;;###autoload |
70 | 312 (defun sort-fields (field beg end) |
313 "Sort lines in region lexicographically by the ARGth field of each line. | |
314 Fields are separated by whitespace and numbered from 1 up. | |
86 | 315 With a negative arg, sorts by the ARGth field counted from the right. |
70 | 316 Called from a program, there are three arguments: |
16765 | 317 FIELD, BEG and END. BEG and END specify region to sort. |
318 The variable `sort-fold-case' determines whether alphabetic case affects | |
319 the sort order." | |
70 | 320 (interactive "p\nr") |
321 (sort-fields-1 field beg end | |
322 (function (lambda () | |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
323 (sort-skip-fields field) |
70 | 324 nil)) |
325 (function (lambda () (skip-chars-forward "^ \t\n"))))) | |
326 | |
327 (defun sort-fields-1 (field beg end startkeyfun endkeyfun) | |
86 | 328 (let ((tbl (syntax-table))) |
329 (if (zerop field) (setq field 1)) | |
70 | 330 (unwind-protect |
331 (save-excursion | |
332 (save-restriction | |
333 (narrow-to-region beg end) | |
334 (goto-char (point-min)) | |
335 (set-syntax-table sort-fields-syntax-table) | |
86 | 336 (sort-subr nil |
70 | 337 'forward-line 'end-of-line |
338 startkeyfun endkeyfun))) | |
339 (set-syntax-table tbl)))) | |
340 | |
4238
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
341 ;; 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
|
342 ;; assuming point is initially at the beginning of the line. |
70 | 343 (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
|
344 (if (> n 0) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
345 ;; Skip across N - 1 fields. |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
346 (let ((i (1- n))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
347 (while (> i 0) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
348 (skip-chars-forward " \t") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
349 (skip-chars-forward "^ \t\n") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
350 (setq i (1- i))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
351 (skip-chars-forward " \t") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
352 (if (eolp) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
353 (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
|
354 (buffer-substring |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
355 (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
|
356 (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
|
357 (end-of-line) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
358 ;; 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
|
359 (let ((i (1- (- n)))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
360 (while (> i 0) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
361 (skip-chars-backward " \t") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
362 (skip-chars-backward "^ \t\n") |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
363 (setq i (1- i))) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
364 (skip-chars-backward " \t")) |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
365 (if (bolp) |
70 | 366 (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
|
367 (buffer-substring |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
368 (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
|
369 (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
|
370 ;; 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
|
371 ;; even if moving backwards. |
6a22eb586080
(sort-skip-fields): Really implement fields as runs
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
372 (skip-chars-backward "^ \t\n"))) |
70 | 373 |
10763
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
374 (defvar sort-regexp-fields-regexp) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
375 (defvar sort-regexp-record-end) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
376 |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
377 ;; 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
|
378 ;; 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
|
379 ;; 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
|
380 ;; skip one character and try again. |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
381 (defun sort-regexp-fields-next-record () |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
382 (let ((oldpos (point))) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
383 (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
|
384 (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
|
385 (if (= sort-regexp-record-end oldpos) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
386 (progn |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
387 (forward-char 1) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
388 (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
|
389 (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
|
390 t) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
391 (goto-char (match-beginning 0))))) |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
392 |
258 | 393 ;;;###autoload |
70 | 394 (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
|
395 "Sort the region lexicographically as specified by RECORD-REGEXP and KEY. |
70 | 396 RECORD-REGEXP specifies the textual units which should be sorted. |
397 For example, to sort lines RECORD-REGEXP would be \"^.*$\" | |
398 KEY specifies the part of each record (ie each match for RECORD-REGEXP) | |
399 is to be used for sorting. | |
13643
146c5daf3019
(sort-regexp-fields): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
400 If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from |
70 | 401 RECORD-REGEXP is used. |
13643
146c5daf3019
(sort-regexp-fields): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
402 If it is \"\\\\&\" then the whole record is used. |
70 | 403 Otherwise, it is a regular-expression for which to search within the record. |
404 If a match for KEY is not found within a record then that record is ignored. | |
405 | |
406 With a negative prefix arg sorts in reverse order. | |
407 | |
16765 | 408 The variable `sort-fold-case' determines whether alphabetic case affects |
409 the sort order. | |
410 | |
70 | 411 For example: to sort lines in the region by the first word on each line |
412 starting with the letter \"f\", | |
13643
146c5daf3019
(sort-regexp-fields): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
413 RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"" |
86 | 414 ;; using negative prefix arg to mean "reverse" is now inconsistent with |
415 ;; other sort-.*fields functions but then again this was before, since it | |
416 ;; 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
|
417 (interactive "P\nsRegexp specifying records to sort: |
70 | 418 sRegexp specifying key within record: \nr") |
419 (cond ((or (equal key-regexp "") (equal key-regexp "\\&")) | |
420 (setq key-regexp 0)) | |
421 ((string-match "\\`\\\\[1-9]\\'" key-regexp) | |
422 (setq key-regexp (- (aref key-regexp 1) ?0)))) | |
423 (save-excursion | |
424 (save-restriction | |
425 (narrow-to-region beg end) | |
426 (goto-char (point-min)) | |
10763
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
427 (let (sort-regexp-record-end |
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
428 (sort-regexp-fields-regexp record-regexp)) |
49128
93b43f689e56
(sort-regexp-fields): pass noerror to
Karl Berry <karl@gnu.org>
parents:
44521
diff
changeset
|
429 (re-search-forward sort-regexp-fields-regexp nil t) |
70 | 430 (setq sort-regexp-record-end (point)) |
431 (goto-char (match-beginning 0)) | |
432 (sort-subr reverse | |
10763
d5a22f90865d
(sort-regexp-fields-next-record): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
433 'sort-regexp-fields-next-record |
70 | 434 (function (lambda () |
435 (goto-char sort-regexp-record-end))) | |
436 (function (lambda () | |
437 (let ((n 0)) | |
438 (cond ((numberp key-regexp) | |
439 (setq n key-regexp)) | |
440 ((re-search-forward | |
441 key-regexp sort-regexp-record-end t) | |
442 (setq n 0)) | |
443 (t (throw 'key nil))) | |
444 (condition-case () | |
16765 | 445 (cons (match-beginning n) |
446 (match-end n)) | |
70 | 447 ;; if there was no such register |
448 (error (throw 'key nil))))))))))) | |
449 | |
450 | |
451 (defvar sort-columns-subprocess t) | |
452 | |
258 | 453 ;;;###autoload |
70 | 454 (defun sort-columns (reverse &optional beg end) |
455 "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
|
456 For the purpose of this command, the region BEG...END includes |
70 | 457 the entire line that point is in and the entire line the mark is in. |
458 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
|
459 A prefix argument means sort into REVERSE order. |
16765 | 460 The variable `sort-fold-case' determines whether alphabetic case affects |
461 the sort order. | |
70 | 462 |
463 Note that `sort-columns' rejects text that contains tabs, | |
464 because tabs could be split across the specified columns | |
465 and it doesn't know how to handle that. Also, when possible, | |
466 it uses the `sort' utility program, which doesn't understand tabs. | |
467 Use \\[untabify] to convert tabs to spaces before sorting." | |
468 (interactive "P\nr") | |
469 (save-excursion | |
470 (let (beg1 end1 col-beg1 col-end1 col-start col-end) | |
471 (goto-char (min beg end)) | |
472 (setq col-beg1 (current-column)) | |
473 (beginning-of-line) | |
474 (setq beg1 (point)) | |
475 (goto-char (max beg end)) | |
476 (setq col-end1 (current-column)) | |
477 (forward-line) | |
478 (setq end1 (point)) | |
479 (setq col-start (min col-beg1 col-end1)) | |
480 (setq col-end (max col-beg1 col-end1)) | |
481 (if (search-backward "\t" beg1 t) | |
34601
5ca359ff87e6
(sort-columns): Fix error message.
Gerd Moellmann <gerd@gnu.org>
parents:
33993
diff
changeset
|
482 (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
|
483 (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
|
484 (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
|
485 (< (next-property-change beg1 nil end1) end1))) |
70 | 486 ;; 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
|
487 ;; 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
|
488 ;; 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
|
489 (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
|
490 (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
|
491 (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
|
492 (when sort-fold-case |
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
493 (push "-f" sort-args)) |
a77843a1f4e4
(sort-columns): If sort-fold-case it non-nil, invoke
Gerd Moellmann <gerd@gnu.org>
parents:
27468
diff
changeset
|
494 (apply #'call-process-region beg1 end1 "sort" t t nil sort-args)) |
70 | 495 ;; On VMS, use Emacs's own facilities. |
496 (save-excursion | |
497 (save-restriction | |
498 (narrow-to-region beg1 end1) | |
499 (goto-char beg1) | |
500 (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
|
501 #'(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
|
502 #'(lambda () (move-to-column col-end) nil)))))))) |
86 | 503 |
258 | 504 ;;;###autoload |
86 | 505 (defun reverse-region (beg end) |
506 "Reverse the order of lines in a region. | |
507 From a program takes two point or marker arguments, BEG and END." | |
508 (interactive "r") | |
509 (if (> beg end) | |
510 (let (mid) (setq mid end end beg beg mid))) | |
511 (save-excursion | |
512 ;; put beg at the start of a line and end and the end of one -- | |
513 ;; the largest possible region which fits this criteria | |
514 (goto-char beg) | |
515 (or (bolp) (forward-line 1)) | |
516 (setq beg (point)) | |
517 (goto-char end) | |
518 ;; the test for bolp is for those times when end is on an empty line; | |
519 ;; it is probably not the case that the line should be included in the | |
520 ;; reversal; it isn't difficult to add it afterward. | |
521 (or (and (eolp) (not (bolp))) (progn (forward-line -1) (end-of-line))) | |
522 (setq end (point-marker)) | |
523 ;; the real work. this thing cranks through memory on large regions. | |
524 (let (ll (do t)) | |
525 (while do | |
526 (goto-char beg) | |
527 (setq ll (cons (buffer-substring (point) (progn (end-of-line) (point))) | |
528 ll)) | |
529 (setq do (/= (point) end)) | |
530 (delete-region beg (if do (1+ (point)) (point)))) | |
531 (while (cdr ll) | |
532 (insert (car ll) "\n") | |
533 (setq ll (cdr ll))) | |
534 (insert (car ll))))) | |
584 | 535 |
536 (provide 'sort) | |
537 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
538 ;;; sort.el ends here |