Mercurial > emacs
annotate lisp/mail/rmailsort.el @ 24980:54725e0c4950
(command-line-1): Activate tooltip mode if interactive.
(command-line-1): Call make-mode-line-mouse-sensitive.
(command-line): Register default tty colors.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 21 Jul 1999 21:43:03 +0000 |
parents | 18b8f50567b2 |
children | 0858ec0fee79 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; rmailsort.el --- Rmail: sort messages. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
7298 | 3 ;; Copyright (C) 1990, 1993, 1994 Free Software Foundation, Inc. |
845 | 4 |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
5 ;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp> |
16988
18b8f50567b2
(rmail-sort-messages): Preserve point
Richard M. Stallman <rms@gnu.org>
parents:
16348
diff
changeset
|
6 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: mail |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
767
diff
changeset
|
8 |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
658
diff
changeset
|
9 ;; This file is part of GNU Emacs. |
90 | 10 |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
658
diff
changeset
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
658
diff
changeset
|
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:
767
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
658
diff
changeset
|
14 ;; any later version. |
90 | 15 |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
658
diff
changeset
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
658
diff
changeset
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
658
diff
changeset
|
19 ;; GNU General Public License for more details. |
90 | 20 |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
658
diff
changeset
|
21 ;; You should have received a copy of the GNU General Public License |
14171 | 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. | |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
658
diff
changeset
|
25 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
767
diff
changeset
|
26 ;;; Code: |
90 | 27 |
28 (require 'sort) | |
29 | |
14235 | 30 ;; For rmail-select-summary |
31 (require 'rmail) | |
32 | |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
33 (autoload 'timezone-make-date-sortable "timezone") |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
34 |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
35 ;; Sorting messages in Rmail buffer |
90 | 36 |
16348
2cf33d3c5540
Add many autoload cookies.
Richard M. Stallman <rms@gnu.org>
parents:
14235
diff
changeset
|
37 ;;;###autoload |
90 | 38 (defun rmail-sort-by-date (reverse) |
39 "Sort messages of current Rmail file by date. | |
40 If prefix argument REVERSE is non-nil, sort them in reverse order." | |
41 (interactive "P") | |
42 (rmail-sort-messages reverse | |
43 (function | |
44 (lambda (msg) | |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
45 (rmail-make-date-sortable |
90 | 46 (rmail-fetch-field msg "Date")))))) |
47 | |
16348
2cf33d3c5540
Add many autoload cookies.
Richard M. Stallman <rms@gnu.org>
parents:
14235
diff
changeset
|
48 ;;;###autoload |
90 | 49 (defun rmail-sort-by-subject (reverse) |
50 "Sort messages of current Rmail file by subject. | |
51 If prefix argument REVERSE is non-nil, sort them in reverse order." | |
52 (interactive "P") | |
53 (rmail-sort-messages reverse | |
54 (function | |
55 (lambda (msg) | |
56 (let ((key (or (rmail-fetch-field msg "Subject") "")) | |
57 (case-fold-search t)) | |
58 ;; Remove `Re:' | |
6490
8c6205143fb1
(rmail-sort-by-subject): Fix `Re:' regexp.
Karl Heuer <kwzh@gnu.org>
parents:
6315
diff
changeset
|
59 (if (string-match "^\\(re:[ \t]*\\)*" key) |
8c6205143fb1
(rmail-sort-by-subject): Fix `Re:' regexp.
Karl Heuer <kwzh@gnu.org>
parents:
6315
diff
changeset
|
60 (substring key (match-end 0)) |
8c6205143fb1
(rmail-sort-by-subject): Fix `Re:' regexp.
Karl Heuer <kwzh@gnu.org>
parents:
6315
diff
changeset
|
61 key)))))) |
90 | 62 |
16348
2cf33d3c5540
Add many autoload cookies.
Richard M. Stallman <rms@gnu.org>
parents:
14235
diff
changeset
|
63 ;;;###autoload |
90 | 64 (defun rmail-sort-by-author (reverse) |
65 "Sort messages of current Rmail file by author. | |
66 If prefix argument REVERSE is non-nil, sort them in reverse order." | |
67 (interactive "P") | |
68 (rmail-sort-messages reverse | |
69 (function | |
70 (lambda (msg) | |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
71 (downcase ;Canonical name |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
72 (mail-strip-quoted-names |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
73 (or (rmail-fetch-field msg "From") |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
74 (rmail-fetch-field msg "Sender") ""))))))) |
90 | 75 |
16348
2cf33d3c5540
Add many autoload cookies.
Richard M. Stallman <rms@gnu.org>
parents:
14235
diff
changeset
|
76 ;;;###autoload |
90 | 77 (defun rmail-sort-by-recipient (reverse) |
78 "Sort messages of current Rmail file by recipient. | |
79 If prefix argument REVERSE is non-nil, sort them in reverse order." | |
80 (interactive "P") | |
81 (rmail-sort-messages reverse | |
82 (function | |
83 (lambda (msg) | |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
84 (downcase ;Canonical name |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
85 (mail-strip-quoted-names |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
86 (or (rmail-fetch-field msg "To") |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
87 (rmail-fetch-field msg "Apparently-To") "") |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
88 )))))) |
90 | 89 |
16348
2cf33d3c5540
Add many autoload cookies.
Richard M. Stallman <rms@gnu.org>
parents:
14235
diff
changeset
|
90 ;;;###autoload |
131 | 91 (defun rmail-sort-by-correspondent (reverse) |
92 "Sort messages of current Rmail file by other correspondent. | |
93 If prefix argument REVERSE is non-nil, sort them in reverse order." | |
94 (interactive "P") | |
95 (rmail-sort-messages reverse | |
96 (function | |
97 (lambda (msg) | |
98 (rmail-select-correspondent | |
99 msg | |
100 '("From" "Sender" "To" "Apparently-To")))))) | |
101 | |
102 (defun rmail-select-correspondent (msg fields) | |
103 (let ((ans "")) | |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
104 (while (and fields (string= ans "")) |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
105 (setq ans |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
106 (rmail-dont-reply-to |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
107 (mail-strip-quoted-names |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
108 (or (rmail-fetch-field msg (car fields)) "")))) |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
109 (setq fields (cdr fields))) |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
110 ans)) |
148
a099f0c77321
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
131
diff
changeset
|
111 |
16348
2cf33d3c5540
Add many autoload cookies.
Richard M. Stallman <rms@gnu.org>
parents:
14235
diff
changeset
|
112 ;;;###autoload |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
113 (defun rmail-sort-by-lines (reverse) |
3878
fab096be7274
Don't touch rmail-summary-mode-map.
Richard M. Stallman <rms@gnu.org>
parents:
3133
diff
changeset
|
114 "Sort messages of current Rmail file by number of lines. |
148
a099f0c77321
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
131
diff
changeset
|
115 If prefix argument REVERSE is non-nil, sort them in reverse order." |
a099f0c77321
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
131
diff
changeset
|
116 (interactive "P") |
a099f0c77321
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
131
diff
changeset
|
117 (rmail-sort-messages reverse |
a099f0c77321
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
131
diff
changeset
|
118 (function |
a099f0c77321
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
131
diff
changeset
|
119 (lambda (msg) |
6315
f6a596a8a248
(rmail-sort-by-lines): msgnum variable should be msg.
Karl Heuer <kwzh@gnu.org>
parents:
5159
diff
changeset
|
120 (count-lines (rmail-msgbeg msg) |
f6a596a8a248
(rmail-sort-by-lines): msgnum variable should be msg.
Karl Heuer <kwzh@gnu.org>
parents:
5159
diff
changeset
|
121 (rmail-msgend msg)))))) |
6718
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
122 |
16348
2cf33d3c5540
Add many autoload cookies.
Richard M. Stallman <rms@gnu.org>
parents:
14235
diff
changeset
|
123 ;;;###autoload |
6718
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
124 (defun rmail-sort-by-keywords (reverse labels) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
125 "Sort messages of current Rmail file by labels. |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
126 If prefix argument REVERSE is non-nil, sort them in reverse order. |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
127 KEYWORDS is a comma-separated list of labels." |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
128 (interactive "P\nsSort by labels: ") |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
129 (or (string-match "[^ \t]" labels) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
130 (error "No labels specified")) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
131 (setq labels (concat (substring labels (match-beginning 0)) ",")) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
132 (let (labelvec) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
133 (while (string-match "[ \t]*,[ \t]*" labels) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
134 (setq labelvec (cons |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
135 (concat ", ?\\(" |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
136 (substring labels 0 (match-beginning 0)) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
137 "\\),") |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
138 labelvec)) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
139 (setq labels (substring labels (match-end 0)))) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
140 (setq labelvec (apply 'vector (nreverse labelvec))) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
141 (rmail-sort-messages reverse |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
142 (function |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
143 (lambda (msg) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
144 (let ((n 0)) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
145 (while (and (< n (length labelvec)) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
146 (not (rmail-message-labels-p |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
147 msg (aref labelvec n)))) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
148 (setq n (1+ n))) |
c13953896b24
(rmail-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6584
diff
changeset
|
149 n)))))) |
90 | 150 |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
151 ;; Basic functions |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
152 |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
153 (defun rmail-sort-messages (reverse keyfun) |
90 | 154 "Sort messages of current Rmail file. |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
155 If 1st argument REVERSE is non-nil, sort them in reverse order. |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
156 2nd argument KEYFUN is called with a message number, and should return a key." |
16988
18b8f50567b2
(rmail-sort-messages): Preserve point
Richard M. Stallman <rms@gnu.org>
parents:
16348
diff
changeset
|
157 (save-current-buffer |
5159
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
158 ;; If we are in a summary buffer, operate on the Rmail buffer. |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
159 (if (eq major-mode 'rmail-summary-mode) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
160 (set-buffer rmail-buffer)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
161 (let ((buffer-read-only nil) |
16988
18b8f50567b2
(rmail-sort-messages): Preserve point
Richard M. Stallman <rms@gnu.org>
parents:
16348
diff
changeset
|
162 (point-offset (- (point) (point-min))) |
5159
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
163 (predicate nil) ;< or string-lessp |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
164 (sort-lists nil)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
165 (message "Finding sort keys...") |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
166 (widen) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
167 (let ((msgnum 1)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
168 (while (>= rmail-total-messages msgnum) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
169 (setq sort-lists |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
170 (cons (list (funcall keyfun msgnum) ;Make sorting key |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
171 (eq rmail-current-message msgnum) ;True if current |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
172 (aref rmail-message-vector msgnum) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
173 (aref rmail-message-vector (1+ msgnum))) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
174 sort-lists)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
175 (if (zerop (% msgnum 10)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
176 (message "Finding sort keys...%d" msgnum)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
177 (setq msgnum (1+ msgnum)))) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
178 (or reverse (setq sort-lists (nreverse sort-lists))) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
179 ;; Decide predicate: < or string-lessp |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
180 (if (numberp (car (car sort-lists))) ;Is a key numeric? |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
181 (setq predicate (function <)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
182 (setq predicate (function string-lessp))) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
183 (setq sort-lists |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
184 (sort sort-lists |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
185 (function |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
186 (lambda (a b) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
187 (funcall predicate (car a) (car b)))))) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
188 (if reverse (setq sort-lists (nreverse sort-lists))) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
189 ;; Now we enter critical region. So, keyboard quit is disabled. |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
190 (message "Reordering messages...") |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
191 (let ((inhibit-quit t) ;Inhibit quit |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
192 (current-message nil) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
193 (msgnum 1) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
194 (msginfo nil)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
195 ;; There's little hope that we can easily undo after that. |
6584
ec24b7ded9bc
(rmail-sort-messages): Use buffer-disable-undo, not buffer-flush-undo.
Karl Heuer <kwzh@gnu.org>
parents:
6583
diff
changeset
|
196 (buffer-disable-undo (current-buffer)) |
5159
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
197 (goto-char (rmail-msgbeg 1)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
198 ;; To force update of all markers. |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
199 (insert-before-markers ?Z) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
200 (backward-char 1) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
201 ;; Now reorder messages. |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
202 (while sort-lists |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
203 (setq msginfo (car sort-lists)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
204 ;; Swap two messages. |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
205 (insert-buffer-substring |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
206 (current-buffer) (nth 2 msginfo) (nth 3 msginfo)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
207 (delete-region (nth 2 msginfo) (nth 3 msginfo)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
208 ;; Is current message? |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
209 (if (nth 1 msginfo) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
210 (setq current-message msgnum)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
211 (setq sort-lists (cdr sort-lists)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
212 (if (zerop (% msgnum 10)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
213 (message "Reordering messages...%d" msgnum)) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
214 (setq msgnum (1+ msgnum))) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
215 ;; Delete the garbage inserted before. |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
216 (delete-char 1) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
217 (setq quit-flag nil) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
218 (buffer-enable-undo) |
484e65abfdea
(rmail-sort-messages): In summary buf, go to rmail buf.
Richard M. Stallman <rms@gnu.org>
parents:
3878
diff
changeset
|
219 (rmail-set-message-counters) |
6583
363f38b4648a
(rmail-sort-messages): Update summary buffer.
Karl Heuer <kwzh@gnu.org>
parents:
6490
diff
changeset
|
220 (rmail-show-message current-message) |
16988
18b8f50567b2
(rmail-sort-messages): Preserve point
Richard M. Stallman <rms@gnu.org>
parents:
16348
diff
changeset
|
221 (goto-char (+ point-offset (point-min))) |
6583
363f38b4648a
(rmail-sort-messages): Update summary buffer.
Karl Heuer <kwzh@gnu.org>
parents:
6490
diff
changeset
|
222 (if (rmail-summary-exists) |
363f38b4648a
(rmail-sort-messages): Update summary buffer.
Karl Heuer <kwzh@gnu.org>
parents:
6490
diff
changeset
|
223 (rmail-select-summary |
363f38b4648a
(rmail-sort-messages): Update summary buffer.
Karl Heuer <kwzh@gnu.org>
parents:
6490
diff
changeset
|
224 (rmail-update-summary))))))) |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
225 |
90 | 226 (defun rmail-fetch-field (msg field) |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
227 "Return the value of the header FIELD of MSG. |
90 | 228 Arguments are MSG and FIELD." |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
229 (save-restriction |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
230 (widen) |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
231 (let ((next (rmail-msgend msg))) |
90 | 232 (goto-char (rmail-msgbeg msg)) |
233 (narrow-to-region (if (search-forward "\n*** EOOH ***\n" next t) | |
234 (point) | |
235 (forward-line 1) | |
236 (point)) | |
237 (progn (search-forward "\n\n" nil t) (point))) | |
238 (mail-fetch-field field)))) | |
239 | |
3133
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
240 (defun rmail-make-date-sortable (date) |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
241 "Make DATE sortable using the function string-lessp." |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
242 ;; Assume the default time zone is GMT. |
2c1553d7aad1
New version from Umeda. Needs detailed entry.
Richard M. Stallman <rms@gnu.org>
parents:
2851
diff
changeset
|
243 (timezone-make-date-sortable date "GMT" "GMT")) |
90 | 244 |
584 | 245 (provide 'rmailsort) |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
246 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
247 ;;; rmailsort.el ends here |